WHILE |
DEVELOPER |
|
|
|
|
Purpose |
WHILE ENDWHILE specifies the repetitive execution of a statement or block of statements. |
|
Syntax |
WHILE condition statement or block |
|
Operation |
condition is any logical or relational expression. |
|
Remarks |
The loop is executed while the condition is True. |
|
Example |
#num = 1 // Loop till num is not equal to 10 |
Topic ID: 520136