0 / 60 seg.

Consider the use of continue in a while loop in this Java code:

int n = 0;
while (n < 5) {
    n++;
    if (n == 3) continue;
    System.out.println(n);
}