Java - Break statement in java

In this section you will learn how to use the break statement.

Java - Break statement in java

In this section you will learn how to use the break statement.

Java - Break statement in java

Java - Break statement in java

     

The java programming language supports the following types of controlling statements such as:
 
1.The break statement 
  2.The
continue statement
  3.The
return statement

Break: The break statement is used in many programming languages such as c, c++, java etc. Some times we need to exit from a loop before the completion of the loop then we use break statement and exit from the loop and loop is terminated. The break statement is used in while loop, do - while loop, for loop and also used in the switch statement.

Code of the program : 

public class  Break{
  public static void main(String[] args){
  int i,j;
  System.out.println("Prime numbers between 1 to 50 : ");
 
 for (i = 1;i < 50;i++ ){
  for (j = 2;j < i;j++ ){
  if(i % j == 0)
  {
  
  break;
  }
  }
  if(i == j)
  {
  System.out.print(
"  " + i);
  }
  }
  }
}

Output of the program :

C:\chandan>javac Break.java

C:\chandan>java Break
The Prime number in between 1 - 50 :
2 3 5 7 11 13 17 19 23 29 31 37 41 43 47

Download this example.