ChipMaster's bwBASIC This also includes history going back to v2.10. *WARN* some binary files might have been corrupted by CRLF.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

9 lines
177 B

  1. 10 REM 'VARIABLE STEP' TEST PROGRAM
  2. 20 PRINT "ENTER A STEP VALUE (BETWEEN 1 AND 10)"
  3. 30 INPUT S
  4. 40 PRINT "THE VALUE OF X=";
  5. 50 FOR X=1 TO 10 STEP S
  6. 60 PRINT X;
  7. 70 NEXT X
  8. 99 END