383,782 views
39 votes
39 votes
Sample program for Do While loop

Qbasic

User Tim MB
by
3.4k points

2 Answers

7 votes
7 votes

Answer:

A "Do While" loop statement runs while a logical expression is true. Explanation:

User Gabitzish
by
2.5k points
22 votes
22 votes

Answer:

A "Do While" loop statement runs while a logical expression is true.

Step-by-step explanation:

This means that as long as your expression stays true, your program will keep on running. Once the expression is false, your program stops running. A "Do Until" loop statement runs until a logical statement is true.

User Ayoub Laaziz
by
2.9k points