Home »
Java Programs »
Java Basic Programs
Java program to demonstrate the break statement with while and for loop
Here, we are demonstrating the use of break statement with while and for loop.
Submitted by Nidhi, on March 09, 2022
Problem statement
The break statement in Java terminates the loop immediately, and the control of the program moves to the next statement written after the loop body.
In this program, we will use the break statement with while and for loop to terminate the loop when the given if statement is true.
Java program to demonstrate the break statement with while and for loop
The source code to demonstrate the break statement with the while and for loop is given below. The given program is compiled and executed successfully.
// Java program to demonstrate the break statement
// with "while" and "for" loop
public class Main {
public static void main(String[] args) {
int cnt = 1;
while (cnt <= 10) {
System.out.print(cnt + " ");
if (cnt == 5) {
break;
}
cnt = cnt + 1;
}
System.out.println();
for (cnt = 1; cnt <= 10; cnt++) {
System.out.print(cnt + " ");
if (cnt == 5) {
break;
}
}
}
}
Output
1 2 3 4 5
1 2 3 4 5
Explanation
In the above program, we created a public class Main. It contains a static method main().
The main() method is an entry point for the program. Here, we used the break statement with while and for loop to terminate the loop when the value of the cnt variable is equal to 5.
Java Basic Programs »