0% found this document useful (0 votes)
52 views9 pages

QB64 - Programming statements II

The document discusses loops in QB64, which allow for the repetition of statements based on specific conditions. It outlines four types of loops available in QB64: FOR … NEXT, DO WHILE … LOOP, DO UNTIL … LOOP, and WHILE … WEND. Each loop executes a series of statements as long as a specified condition remains true.

Uploaded by

Douglas Simiyu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
52 views9 pages

QB64 - Programming statements II

The document discusses loops in QB64, which allow for the repetition of statements based on specific conditions. It outlines four types of loops available in QB64: FOR … NEXT, DO WHILE … LOOP, DO UNTIL … LOOP, and WHILE … WEND. Each loop executes a series of statements as long as a specified condition remains true.

Uploaded by

Douglas Simiyu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 9

qbjs.

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

You might also like