×
×
Correct!
Use the
int i = 1;
@(2) {
System.out.println(i);
i++;
}
@(5) (i < 6);
int i = 1;
do {
System.out.println(i);
i++;
}
while (i < 6);
Not CorrectClick here to try again. Correct! |
This will reset the score of ALL 59 exercises.
Are you sure you want to continue?