13238 . 判断题 Puls

下面的C++代码执行后将输出24。

int total;
for (int n = 1; n <= 4; n++) {
     total += n;
}
cout << total;