Computer Science, asked by aayush0431, 1 year ago

Qbascic Programming-Write a program to print the first natural numbers in in the descending order

Answers

Answered by farhan7727
0

I am not so good in Qbasic but I’ll try

I = 10

While (I >0)

Print I

I = I - 1

Wend

Similar questions