Computer Science, asked by 7935shreyanshpoddar, 3 days ago

write a program in qbasic to print the natural numbers between 10 to 30 useing while loop

Answers

Answered by samarthkrv
0

Answer:

CLS

FOR I = 1 TO 30

PRINT I

NEXT I

END

Explanation:

Similar questions