Java
Java Control Statements (Part 3) – Day 7
Jump Statement Java supports three jump statement: break, continue, and return. These statements transfer control to another part of your program. Using break Statement In Java, the break jump statement has three uses. First, as you have seen, it terminates a statement sequence in a switch statement. Second, it can Read more…