Sunday, September 6, 2009

19. Computer Programming with flowcharting Technique (page 19)

free counters



FIG.21
Writing differs from command goto but the output is same

7.1.1. a. FOR - - - NEXT - - - STEP
10 CLS
15 PRINT “PROG013”
20 X = 1
30 FOR X = 1 TO 100 STEP 1
35 PRINT X;
40 NEXT X
50 END

Followers