QB64 - Programming statements II
QB64 - Programming statements II
org
QB64
Programming statements II
LOOPS IN QB64
• Sometimes there’s need to repeat a set of statements more than once
based on a certain condition. This repetition is called Loop or Iteration
in programming.
• The following loops are available in QB64
1. FOR … NEXT
2. DO WHILE … LOOP
3. DO UNTIL … LOOP
4. WHILE … WEND
• Executes a series of statements as long as a specified condition is true