Computer Science, asked by ParagLalwani, 3 months ago

Write a qbasic program to print 20 to 25.(use DO…LOOP WHILE loop).​

Answers

Answered by rameshb125
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