Ask a Teacher



what is the syntax of continue statement?.

Continue Statement in Java is used to skip the part of loop.

Syntax : Continue Statement

{
//loop body
-----------
-----------
-----------
-----------

continue;

-----------
-----------
}



comments powered by Disqus