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

正确

B

错误

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