130k views
13 votes
Question:

Draw flowchart diagram for the following
programs using loop.
A) A program that display number 1 to 202

User Zequez
by
7.3k points

1 Answer

11 votes
CLS
C=1
FOR I = 1 TO 202
PRINT C
C=C+1
NEXT I
END
User Matthijn
by
7.2k points