Menu
×
×
正确
i <- 1
while (i < 6) {
print(i)
i <- i + 1
if (i == 4) {
@(5)
}
}
i <- 1
while (i < 6) {
print(i)
i <- i + 1
if (i == 4) {
break
}
}
不正确
点击 此处 重试 正确
下一题 ❯i <- 1 while (i < 6) { print(i) i <- i + 1 if (i == 4) {w3exercise_input_no_0} } |