Do...Loop: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
No edit summary
Line 27: Line 27:
== Description ==
== Description ==


Do...Loop repeats a block of statements While a given condition is TRUE, or UNTIL a given condition becomes TRUE. The required component, ''condition'', is any expression that can be evaluated as TRUE or FALSE. The optional component, ''statements'', are the statements executed during the body of the loop. Any number of optional EXIT Do statements can be used to exit a loop before it is finished. Do...Loop statements can be nested, and any EXIT DO statements in a nested loop transfer execution to one level above the loop where the EXIT Do occurs.
Do...Loop repeats a block of statements While a given condition is TRUE, or Until a given condition becomes TRUE. The required component, ''condition'', is any expression that can be evaluated as TRUE or FALSE. The optional component, ''statements'', are the statements executed during the body of the loop. Any number of optional Exit Do statements can be used to exit a loop before it is finished. Do...Loop statements can be nested, and any Exit DO statements in a nested loop transfer execution to one level above the loop where the Exit Do occurs.


Placing the While/Until clause directly after Do causes ''condition'' to be evaluated before the first loop is executed, if ''condition'' is FALSE statements are never executed; placing the While/Until clause after LOOP causes the body of the loop to be executed before ''condition'' is evaluated, statements will always be executed, at least once.
Placing the While/Until clause directly after Do causes ''condition'' to be evaluated before the first loop is executed, if ''condition'' is FALSE statements are never executed; placing the While/Until clause after Loop causes the body of the loop to be executed before ''condition'' is evaluated, statements will always be executed, at least once.


== Example ==
== Example ==


<pre>
<pre>
REM Do...Loop Example
Rem Do...Loop Example
'Do...Loop repeats a block of statements
'Do...Loop repeats a block of statements
Dim Counter
Dim Counter
Line 40: Line 40:
'Loop that prints 1 to 5
'Loop that prints 1 to 5
Do While Counter < 6
Do While Counter < 6
   PRINT "Do While...Loop:", Counter
   Print "Do While...Loop:", Counter
   Counter = Counter + 1
   Counter = Counter + 1
Loop
Loop
PRINT
Print
'Infinite loop that uses EXIT DO toterminate
'Infinite loop that uses Exit Do toterminate
Counter = 1000
Counter = 1000
Do
Do
   PRINT "Infinite Loop:", Counter
   Print "Infinite Loop:", Counter
   IF Counter >= 1000000 THEN
   If Counter >= 1000000 Then
     EXIT DO
     Exit Do
   Counter = Counter * 10
   Counter = Counter * 10
Loop
Loop
Line 70: Line 70:
== Related Items ==
== Related Items ==


[[exit|EXIT]], [[for each...next|FOR EACH...NEXT]], [[for...next|FOR...NEXT]], [[while...wend|WHILE...WEND]]
[[exit|Exit]], [[for each...next|For Each...Next]], [[for...next|FOR...Next]], [[while...wend|While...Wend]]


[[Category:Language Reference]]
[[Category:Language Reference]]

Revision as of 00:38, 24 August 2012

Statement

Do [While | Until ''condition'']

  [''statements'']

  [EXIT Do]

  [''statements'']

Loop

or

Do

  [''statements'']

  [EXIT Do]

  [''statements'']

Loop [While | Until ''condition'']

Description

Do...Loop repeats a block of statements While a given condition is TRUE, or Until a given condition becomes TRUE. The required component, condition, is any expression that can be evaluated as TRUE or FALSE. The optional component, statements, are the statements executed during the body of the loop. Any number of optional Exit Do statements can be used to exit a loop before it is finished. Do...Loop statements can be nested, and any Exit DO statements in a nested loop transfer execution to one level above the loop where the Exit Do occurs.

Placing the While/Until clause directly after Do causes condition to be evaluated before the first loop is executed, if condition is FALSE statements are never executed; placing the While/Until clause after Loop causes the body of the loop to be executed before condition is evaluated, statements will always be executed, at least once.

Example

Rem Do...Loop Example
'Do...Loop repeats a block of statements
Dim Counter
Counter = 1
'Loop that prints 1 to 5
Do While Counter < 6
  Print "Do While...Loop:", Counter
  Counter = Counter + 1
Loop
Print
'Infinite loop that uses Exit Do toterminate
Counter = 1000
Do
  Print "Infinite Loop:", Counter
  If Counter >= 1000000 Then
    Exit Do
  Counter = Counter * 10
Loop

Output

Do While...Loop:     1
Do While...Loop:     2
Do While...Loop:     3
Do While...Loop:     4
Do While...Loop:     5
Infinite Loop:       1000
Infinite Loop:       10000
Infinite Loop:       100000
Infinite Loop:       1000000

Related Items

Exit, For Each...Next, FOR...Next, While...Wend