FreeBASIC - Loop with condition at the end until is false: do loop until
Condition testing is done at the end of the loop. after each iteration the condition is tested, if it is was true. if the specified condition is false, then the loop will continue run, otherwise it will be completed.do loop until
Description
do
statements
loop until condition
Input
- statements - statements
- condition - Logical value The condition can be any expression
Examples
FreeBASIC
i=10
do
i=i-1
loop until ( i = 0)
do
i=i+1
if i=3 then
exit do
end if
loop until (i=10)
Loop with condition at the end until is false in another programming language:
Differences to: