某君从某年开始每年都举办一次生日party,并且每次都要吹熄与年龄相同根数的蜡烛。
现在算起来,他一共吹熄了236根蜡烛。
请问,他从多少岁开始过生日party的?
请填写他开始过生日party的年龄数。
注意:你提交的应该是一个整数,不要填写任何多余的内容或说明性文字。
public class Main {
public static void main(String[] args) {
for (int start = 0; start <= 100; start++) { // 枚举开始过生日的年龄
for (int end = start + 1; end <= 100; end++) { // 枚举到现在
int sum = 0;
for (int i = start; i <= end; i++)
sum += i;
if (sum == 236)
System.out.println(start);
}
}
}
}