求 s = 1 + 2 + 3 + ... + n,当加到第几项时,s 的值会超过 1000?
【输出样例】
45
【参考程序】
//爱码岛编程
#include <iostream>
using namespace std;
int main() {
int s = 0, n = 0;
while (s <= 1000) {
n++;
s += n;
}
cout << n << endl;
return 0;
}