第19718题
判断给定的C++for循环代码执行后是否输出10
int i;
for (i = 0; i < 10; i++)
  continue;
cout << i << endl;
A

正确

B

错误

提交0次 正确率0.00%
答案解析