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{
|
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 |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Java - Break statement in java View All Comments
Post your Comment