break out of if statement java code example
Example 1: how to break out for loop java
//Java Program to demonstrate the use of break statement
//inside the for loop.
public class BreakExample {
public static void main(String[] args) {
//using for loop
for(int i=1;i<=10;i++){
if(i==5){
//breaking the loop
break;
}
System.out.println(i);
}
}
}
Example 2: break statement in java
// break statement in java
public class BreakStatementExample
{
public static void main(String[] args)
{
for(int a = 1; a <= 10; a++)
{
if(a == 3)
{
// breaking loop
break;
}
System.out.println(a);
}
}
}
Example 3: how to end a program in an if statement java
if(letters >=5 && digits >=5)
{
System.out.println("Great job! String is acceptable");
System.exit(0);
}
//after use, letter and digit variables reset to 0
letters = 0;
digits = 0;
} //end a program within an if statement, which is nested with a while loop
//with the use of System.exit(0)
//0 indicates successful termination
//any non-zero value indicates an unsuccessful termination