×
×
Correct!
Stop the loop if
for (int i = 0; i < 10; i++) {
if (i == 5) {
@(5);
}
System.out.println(i);
}
for (int i = 0; i < 10; i++) {
if (i == 5) {
break;
}
System.out.println(i);
}
Not CorrectClick here to try again. Correct! |
This will reset the score of ALL 59 exercises.
Are you sure you want to continue?