第19706题
给定的C++累加代码执行后是否输出15?
int Sum = 0;
for (int i = 0; i < 5; i++)    Sum += i;
cout << Sum;
A

正确

B

错误

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