蓝桥杯 生日蜡烛(第七届第二题)


生日蜡烛

某君从某年开始每年都举办一次生日party,并且每次都要吹熄与年龄相同根数的蜡烛。

现在算起来,他一共吹熄了236根蜡烛。

请问,他从多少岁开始过生日party的?

请填写他开始过生日party的年龄数。
注意:你提交的应该是一个整数,不要填写任何多余的内容或说明性文字。

结果:26 ,从26到33

 

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <set>
#include <sstream>
#include <climits>
using namespace std;
int main(){
//    freopen("input.txt","r",stdin);
    int x=236;
    for(int i=1;i<=100;i++)
        for(int j=i+1;j<=100;j++){
            if((i+j)*(j-i+1)/2==x){
                cout<<i<<" "<<j<<endl;
            }
        }

}

 

posted @ 2019-03-13 20:08  开局一把刀  阅读(3)  评论(0)    收藏  举报