☞'break' is a keyword.
☞It can only be used either in the body of loop or in the body of switch.
☞The keyword break is used in the body of loop to terminate execution of loop before completion of its normal life.
public class BreakExample1 {
public static void main(String[] args) {
for(int i=1;i<=10;i++){
if(i==5){
break;
}
System.out.println(i);
}
}
}
1 2 3 4
public class BreakExample2 {
public static void main(String[] args) {
for(int i=1;i<=3;i++){
for(int j=1;j<=3;j++){
if(i==2 && j==2){
break;
}
System.out.println(i+" "+j);
}
}
}
}
1 1 1 2 1 3 2 1 3 1 3 2 3 3