2005-08-05 04:51 PM
2005-08-05 05:37 PM
2005-08-05 05:51 PM
2005-08-05 06:56 PM
2005-08-05 08:13 PM
2005-08-08 11:35 AM
sirduncan wrote:It is the end of the day here so I might be missing something but how can coursenum ever be larger than stopper unless tcxn is negative since the max value coursenum can ever have is courses.
code:
stopper = (courses - tcxn) ! (turns out to be 6)
FOR coursenum=1 TO courses STEP 1
IF coursenum > stopper THEN ! why is this not working?
clx = 5
ELSE
clx = 1
ENDIF
2005-08-08 05:48 PM