Loops in Java

Loop in Java
Like in JavaScript and PHP it is the same in Java to use these Three Types of loops.

Break in loops

It Breaks the loop when the condition is satisfied.

Continue in loops

It doesn't break the loop but it skips the execution of code when the condition is satisfied.

Post a Comment

0 Comments