第19214题
判断给定的C++代码执行后是否会输出0
int tnt = 0;
for (int i = -100; i < 100; i++)
    tnt += i;
cout << tnt;
A

正确

B

错误

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