Computer Science, asked by sofiypatel1910, 6 months ago

write a program in Qbasic to print natural numbers from 10 to 20 in reverse order​

Answers

Answered by sshayansaeed
5

Answer:

Explanation:

CLS

c = 20

WHILE c => 10

   PRINT c

   c = c - 1

WEND

END

Similar questions