Computer Science, asked by divya8199, 16 days ago

write qbasic program using FOR loop to print 1 to 100 .​

Answers

Answered by anantramdasg
2

Answer:

CLS

c = 1

DO WHILE c <= 100

   PRINT c

   c = c + 1

LOOP

END

Explanation:

Similar questions