looping code code example
Example 1: code for loop
for (initializationStatement; testExpression; updateStatement)
{
// statements inside the body of loop
}
Example 2: loops in coding
Do
X = 5+2
Loop Until X > 5
for (initializationStatement; testExpression; updateStatement)
{
// statements inside the body of loop
}
Do
X = 5+2
Loop Until X > 5