单选题 难度 1
跟着循环算一遍。
下面代码的输出是( )。 int s = 0; for (int i = 1; i <= 5; i++) s += i * i; cout << s << endl;