Break Statement
A break Statement breaks out of the loop at the current point or we can say that it terminates the loop condition.
It is represented by break;
The Code:

The Output of Your Program:

Continue Statement
A Continue statement jumps out of the current loop condition and jumps back to the starting of the loop code.
It is represented by continue;
The Code:

The Output of Your Program:

