Explanation
WHILE...WEND Statement
Executes a series of statements as long as a specified condition is true.Worth knowing
Useful and cross-version information about the programming environments of QBasic, QuickBasic and Visual Basic for DOS.
Useful and cross-version information about the programming environments of QBasic, QuickBasic and Visual Basic for DOS.
WHILE condition . . . WEND |
condition | A numeric expression that Basic evaluates as true (nonzero) or false (zero). |
DO...LOOP provides a better way to execute statements in a program loop. |