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.
|
- 10 REM 'VARIABLE STEP' TEST PROGRAM
- 20 PRINT "ENTER A STEP VALUE (BETWEEN 1 AND 10)"
- 30 INPUT S
- 40 PRINT "THE VALUE OF X=";
- 50 FOR X=1 TO 10 STEP S
- 60 PRINT X;
- 70 NEXT X
- 99 END
|