#2318. [GESP202606 一级 C++] 第 25 题
[GESP202606 一级 C++] 第 25 题
删除下面 C++ 代码中的 continue 后,其输出与原来相同。
int x = 0;
while (x < 4) {
x++;
if (x == 2) continue;
cout << x << ",";
}
{{ select(1) }}
- 正确
- 错误
删除下面 C++ 代码中的 continue 后,其输出与原来相同。
int x = 0;
while (x < 4) {
x++;
if (x == 2) continue;
cout << x << ",";
}
{{ select(1) }}