第20013题 判断
执行给定的C++代码后输出是否为30?
int rst = 0;
for (int i = 0; i < 10; i += 2)
    rst += i;
cout << rst;
A

正确

B

错误

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