×
×
Correct!
Print
i <- 1
@(5) (i < 6) {
print(i)
i <- i + 1
}
i <- 1
while (i < 6) {
print(i)
i <- i + 1
}
Not CorrectClick here to try again. Correct! |
This will reset the score of ALL 40 exercises.
Are you sure you want to continue?