第19223题
判断给定的C++循环计数代码执行后是否输出99
int cnt = 0;  
for (int i = 0; i < 100; i++)      
    cnt += 1;  
cout << cnt;
A

正确

B

错误

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