Do...Loop: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
 
(11 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== Statement ==
== Statement ==
<pre>
<pre>
Do [While | Until ''condition'']
Do [While | Until condition]
 
   [statements]
   [''statements'']
 
   [EXIT Do]
   [EXIT Do]
 
   [statements]
   [''statements'']
 
Loop
Loop
</pre>


or
or


<pre>
Do
Do
 
   [statements]
   [''statements'']
 
   [EXIT Do]
   [EXIT Do]
 
   [statements]
   [''statements'']
Loop [While | Until condition]
 
Loop [While | Until ''condition'']
</pre>
</pre>


Line 33: Line 26:
== Example ==
== Example ==


<pre>
<tabber>
JavaScript=
<syntaxhighlight lang="JavaScript">
// Do...Loop Example
/* Do...Loop repeats a block of statements */
 
var Counter;
Counter = 1;
//Loop that prints 1 to 5
while (Counter < 6) {
  NSB.Print("Do While...Loop: " + Counter);
  Counter = Counter + 1;
}
NSB.Print("");
//Infinite loop that uses Break to terminate
Counter = 1000;
do {
  NSB.Print("Infinite Loop: " + Counter);
  if(Counter >= 1000000 )  { break; }
  Counter = Counter * 10;
} while(1);
</syntaxhighlight>
|-|
BASIC=
<syntaxhighlight lang="vb.net">
Rem Do...Loop Example
Rem Do...Loop Example
'Do...Loop repeats a block of statements
'Do...Loop repeats a block of statements
Line 44: Line 61:
Loop
Loop
Print
Print
'Infinite loop that uses Exit Do toterminate
'Infinite loop that uses Exit Do to terminate
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
</pre>
</syntaxhighlight>
</tabber>


== Output ==
== Output ==

Latest revision as of 14:10, 24 July 2019

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

// Do...Loop Example
/* Do...Loop repeats a block of statements */

var Counter;
Counter = 1;
//Loop that prints 1 to 5
while (Counter < 6) {
  NSB.Print("Do While...Loop: " + Counter);
  Counter = Counter + 1;
}
NSB.Print("");
//Infinite loop that uses Break to terminate
Counter = 1000;
do {
  NSB.Print("Infinite Loop: " + Counter);
  if(Counter >= 1000000 )  { break; }
  Counter = Counter * 10;
} while(1);

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 to terminate
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