Break statement: break, exit do, exit for, exit while, last
Used for the immediate interruption of the loop. after execution, will proceed with the following command after loop.break
Description
break ;
Note: Usable in the following locations:
loop with condition at the end loop with condition on the beginning loop with condition at the end until is false loop with condition on the beginning until is false
loop with condition at the end loop with condition on the beginning loop with condition at the end until is false loop with condition on the beginning until is false
Examples
Example
Even one example in what situations we can use the operation break statement:i=10;
do --i; while ( i > 0);
do {
i++;
if (i==5)
break;
} while ( i <10);
Example
Other pieces of example codes:if (i==10) break; else { i--; }
if (i==10) break; else { i--; }
if (i==3) break;
exit do
Description
exit do
Note: Usable in the following locations:
loop with condition at the end loop with condition at the end until is false
loop with condition at the end loop with condition at the end until is false
Examples
Basic
Even one example in what situations we can use the operation break statement:i=10
do
i=i-1
loop while i > 0
do
i=i+1
if i=5 then
exit do
end if
loop while i <10
Basic
Other pieces of example codes:if i=10 then exit do else i=i-1 end if
if i=10 then exit do else i=i-1 end if
if i=3 then exit do end if
exit for
Description
exit for
Note: Usable in the following locations:
Examples
Basic
Even one example in what situations we can use the operation break statement:i=10
do
i=i-1
loop while i > 0
do
i=i+1
if i=5 then
exit do
end if
loop while i <10
exit while
Description
exit while
Note: Usable in the following locations:
loop with condition on the beginning loop with condition on the beginning until is false
loop with condition on the beginning loop with condition on the beginning until is false
Examples
Basic
Even one example in what situations we can use the operation break statement:i=10
do
i=i-1
loop while i > 0
do
i=i+1
if i=5 then
exit do
end if
loop while i <10
last
Description
last ;
Note: Usable in the following locations:
loop with condition at the end loop with condition on the beginning loop with condition at the end until is false loop with condition on the beginning until is false
loop with condition at the end loop with condition on the beginning loop with condition at the end until is false loop with condition on the beginning until is false
Examples
break
Description
break ;
Note: Usable in the following locations:
loop with condition at the end loop with condition on the beginning loop with condition at the end until is false loop with condition on the beginning until is false
loop with condition at the end loop with condition on the beginning loop with condition at the end until is false loop with condition on the beginning until is false
Examples
Object Pascal
Even one example in what situations we can use the operation break statement:i:=10;
repeat dec(i) until not i > 0;
repeat
inc(i);
if i=5 then
break;
until not i <10;
Object Pascal
Other pieces of example codes:if i=10 then break else begin dec(i) end
if i=3 then break;
Break statement in another programming language: