Computer Science, asked by animeweeb91, 1 month ago

Write a program in QBASIC to print first 10 natural numbers using FOR LOOP.

Answers

Answered by atrs7391
0

CLS

FOR I = 1 TO 10

PRINT I

NEXT I

END

Similar questions