Menu
×
×
Correct!
Exercise:Stop the loop if
for (int i = 0; i < 10; i++) {
if (i == 5) {
@(5);
}
printf("%d\n", i);
}
for (int i = 0; i < 10; i++) {
if (i == 5) {
break;
}
printf("%d\n", i);
}
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 46 exercises.
Are you sure you want to continue?