100k views
0 votes
Write a qbasic program to display integer numbers 1 to 100 using the for next loop


User Tom Fakes
by
4.3k points

1 Answer

1 vote

Answer:

CLS

FOR i = 1 TO 100

PRINT i

NEXT i

END

User Djsmith
by
4.3k points