单选题 难度 2
只累加奇数。
下面代码的输出是( )。 int s = 0; for (int i = 1; i <= 10; i++) { if (i % 2 == 0) continue; s += i; } cout << s << endl;