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 :
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
Code of the program :
public class Break{
|
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