Consider the use of "continue" in a "for" loop in this Java code:
for (int i = 0; i < 5; i++) {
if (i == 2) continue;
System.out.println(i);
}
Consider the use of "continue" in a "for" loop in this Java code:
for (int i = 0; i < 5; i++) {
if (i == 2) continue;
System.out.println(i);
}