In this section you will learn how to use the break statement.
In this section you will learn how to use the break statement.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 |
Ads