Computer Science, asked by prithvi6057, 1 day ago

write a program in qbasic to print all the natural numbers from 30 to 40 using while loop

Answers

Answered by kashishparmaristhere
0

Answer:

CLS

FOR I = 2 TO 20STEP 2

PRINT I;

NEXT I

END

Explanation:

Hope it helps you

Similar questions