第19269题 判断
判断给定C++循环累加代码执行后是否输出45
int n, i;
n = i = 0;
while (i < 10) {
    i += 1;
    n += i;
}
cout << n;
A

正确

B

错误

程序运行统计
暂无判题统计