Write a qbasic program to print 20 to 25.(use DO…LOOP WHILE loop).
Answers
Answered by
5
Answer:
Okay
Explanation:
We can use this loop by 4 different methods. ... While writing a program we can fallow any one syntax ... 12345678CLS n = 20 DO PRINT n; n = n - 1 LOOP UNTIL n < 1 ...
Similar questions