Explain the use of break and continue statements with the help of an example
Answers
Answered by
7
Answer:
THE STATEMENT BREAK HELPS TO TERMINATE THE SYNTAX
FOR Eg. case(x)
case1: system.out.prinln(x+" ")
break;
case2: system.out.println(x+" ")
break;
Similar questions