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


1 Answer

1 vote

Answer:

CLS

FOR i = 1 TO 100

PRINT i

NEXT i

END

answered
User Djsmith
by
8.4k points