题目描述
某君从某年开始每年都举办一次生日party,并且每次都要吹熄与年龄相同根数的蜡烛。
现在算起来,他一共吹熄了236根蜡烛。
请问,他从多少岁开始过生日party的?
输出
请填写他开始过生日party的年龄数。
代码如下:
#include <iostream>
using namespace std;int main() {for (int i = 1; i <= 120; i++)//从1岁开始枚举。{int sum = 0;for (int j = i; j <= 120; j++) {sum = sum + j;//将蜡烛都加起来if (sum == 236) {cout << i << endl;return 0;}if (sum > 236) {break;}}}return 0;
}