单选题 难度 2
累加到一半就跳出了。
下面代码的输出是( )。 int s = 0; for (int i = 1; i <= 10; i++) { if (i == 5) break; s += i; } cout << s << endl;