作业帮 > 综合 > 作业

求C语言大神帮忙看看哪错了

来源:学生作业帮 编辑:作业帮 分类:综合作业 时间:2024/05/12 06:12:09
求C语言大神帮忙看看哪错了
DescriptionACMer the Programmer loves romance,so this year he decided to illuminate his room with candles.ACMer has a candles.When Vasily lights up a new candle,it first burns for an hour and then it goes out.ACMer is smart,so he can make b went out candles into a new candle.As a result,this new candle can be used like any other new candle.Now ACMer wonders:for how many hours can his candles light up the room if he acts optimally well?Help him find this number.
Input
There are more test cases.The single line contains two integers,a and b (1≤a≤1000; 2≤b≤1000).
Output
Print a single integer — the number of hours Vasily can light up the room for.
Sample Input4 2Sample Output7HINT

OJ系统说我答案错误50%
int a,b,c,d;
int sum;
scanf("%d %d",&a,&b);
if(a1000 || b1000)
\x09return -1;
sum=a;
while(a > 0)
{
c = a/b;
if(c < 1)
\x09break;
d = a%b;
sum = sum +c;
a = c+d;
}
printf("%d\n",sum);
再问: 大神,头文件是啥,stdio.h么
再答: stdio.h就好了,写的就是main里面的内容,头文件什么的一样的
再问: 系统还是不给过,错误类型.答案错误,应该是有特殊情况没考虑到....我问了好多人了都不知道还有哪种情况
再答: 错误贴出来看一下~