码迷,mamicode.com
首页 > 其他好文 > 详细

蓝桥杯-生日蜡烛

时间:2017-04-06 21:14:45      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:i++   clu   namespace   iostream   str   蓝桥杯   bsp   pac   内容   


生日蜡烛

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

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

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

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


#include <iostream>
#include <cmath>
using namespace std;
/*int sum_num(int n)
{
int i,sum=0;
for(i=1;i<=n;i++)
{
sum=sum+i;
}
return sum;
}*/
int main()
{
int count=0,i,t;
for(i=26;i<=33;i++)
{
count=count+i;

if(count==236)
{
cout<<i<<endl;
}
}
cout<<count<<endl;
return 0;
}

 

////////////////////////////////

#include <iostream>
#include <cmath>
using namespace std;

int main()
{
int i,j;
int count;
for(i=1;i<=100;i++)
{
count = 0;
for(j=i;j<100;j++)
{
count+=j;
if(count>236)
break;
if(count==236)
cout<<i<<endl;
}
}
return 0;
}

蓝桥杯-生日蜡烛

标签:i++   clu   namespace   iostream   str   蓝桥杯   bsp   pac   内容   

原文地址:http://www.cnblogs.com/gcter/p/6675175.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!