博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
cigarettes
阅读量:5021 次
发布时间:2019-06-12

本文共 1103 字,大约阅读时间需要 3 分钟。

1 /*描述 2 Tom has many cigarettes. We hypothesized that he has n cigarettes and smokes them 3 one by one keeping all the butts. Out of k > 1 butts he can roll a new cigarette.  4 Now,do you know how many cigarettes can Tom has? 5  6 输入 7 First input is a single line,it's n and stands for there are n testdata.then there are n lines , 8 each line contains two integer numbers giving the values of n and k. 9 输出10 For each line of input, output one integer number on a separate line giving the maximum number of cigarettes that Peter can have.11 样例输入12 313 4 314 10 315 100 516 样例输出17 518 1419 124*/20 #include
21 int main()22 {23 int n;24 scanf("%d",&n);25 while( n-- )26 {27 int f(int a,int b);28 int l , k;29 scanf("%d%d",&l,&k);30 printf("%d\n",f(l,k));31 }32 return 0;33 }34 int f(int a,int b)35 {36 int sum = a, x , y ;37 while(a >= b)38 {39 sum = a/b + sum;40 y = a % b;41 x = a / b;42 a = y + x;43 }44 return sum;45 }46

 

转载于:https://www.cnblogs.com/a604378578/p/3547607.html

你可能感兴趣的文章
Android权限 uses-permission
查看>>
NSEnumerator用法小结
查看>>
vim如何配置go语言环境
查看>>
机器学习好网站
查看>>
python 中的 sys , os 模块用法总结
查看>>
解题:国家集训队 Middle
查看>>
响应者链
查看>>
指针从函数内部带回返回值
查看>>
在使用webView播放flash或视频文件时无法关闭声音的问题
查看>>
redhat 7 源码安装 mysql5.5.49
查看>>
CCP浅谈
查看>>
NAT虚拟网络配置
查看>>
c#部分---需要实例化的内容;
查看>>
销售类
查看>>
技术项目,问题
查看>>
线程池总结
查看>>
Learning to rank (software, datasets)
查看>>
git常见问题
查看>>
.NETFramework:template
查看>>
HM16.0之帧内模式——xCheckRDCostIntra()函数
查看>>