coderz.py

Keep Coding Keep Cheering!

Jump Statements

The jump statements unconditionally transfer program control within a function. Java has three statements that perform an unconditional branch: return break continue Of these, you may use return anywhere in the program, whereas break and continue are used inside the smallest enclosing like loops, etc. The break statement: A break statement skips the rest of […]

May 6, 2022 | Java | No comments

Advertisement