trainingtrains Logo

91-9990449935

 0120-4256464

Java Continue Statement

The Java continue statement is used to continue loop. It continues the current flow of the program and skips the remaining code at specified condition. In case of inner loop, it continues only inner loop.

Syntax:

Java Continue Statement Example

Example:

Output:

1
2
3
4
6
7
8
9
10

Java Continue Statement with Inner Loop

It continues inner loop only if you use continue statement inside the inner loop.

Example:

Output:

1 1
1 2
1 3
2 1
2 3
3 1
3 2
3 3
Next TopicJava Programs