删除下面 C++代码中的 continue 后,其输出与原来相同。
int x = 0; while (x < 4) { x++; if (x == 2) continue; cout << x << ","; }
正确
错误