The break and continue statements are used to manipulate program flow in structures such as loops.
When a break statement is executed in a loop, the loop is terminated and program control returns to the next statement following the end of the loop.
The next program statements demonstrate the use of the break statement.