Menu
×
×
Correct!
Exercise:In the loop, when the value is "4", jump directly to the next value.
for (int i = 0; i < 10; i++) {
if (i == 4) {
continue;
}
System.out.println(i);
}
Not CorrectClick here to try again. Correct!Next ❯for (int i = 0; i < 10; i++) { if (i == 4) {; } System.out.println(i); } |