// ContinueExample.java – Demonstrates the use of the continue statement
public class ContinueExample {
public static void main(String[] args) {
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
if (j == 1)
continue;
System.out.println("i=" + i + " j=" +j);
}
}
}
}