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

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

cigarettes

时间限制:
3000 ms  |  内存限制:
65535 KB
难度:
2
 
描述

Tom has many cigarettes. We hypothesized that he has n cigarettes and smokes them

one by one keeping all the butts. Out of k > 1 butts he can roll a new cigarette. 

Now,do you know how many cigarettes can Tom has?

 
输入
First input is a single line,it's n and stands for there are n testdata.then there are n lines ,each line contains two integer numbers giving the values of n and k.
输出
For each line of input, output one integer number on a separate line giving the maximum number of cigarettes that Peter can have.
样例输入
34 310 3100 5
#include
int main(){ int n,a,b; int t1,t2,t3,k; scanf("%d",&n); while(n--) { scanf("%d%d",&a,&b); t2=0; k=a; while(a/b>0) { t1=a/b; t3=a%b; t2+=t1; //printf("t2==%d",t2);// a=t1+t3; } printf("%d\n",k+t2); } return 0;}

 

转载于:https://www.cnblogs.com/zhaojiedi1992/archive/2012/08/02/zhaojiedi_2012_08_020000000.html

你可能感兴趣的文章
基于神念TGAM的脑波小车(1)
查看>>
ceph集群搭建Jewel版本
查看>>
HttpClient 解释
查看>>
111111
查看>>
在Button上面显示图片,去掉Button的默认样式
查看>>
区域生长算法
查看>>
(转)json+flexgrid+jbox组合运用页面刷新<jsp>
查看>>
hive学习2(Navicat连接hive)
查看>>
getResourceAsStream的3种路径配置
查看>>
switch语句小练习
查看>>
组合逻辑电路
查看>>
POP-一个点击带有放大还原的动画效果
查看>>
个人阅读作业2
查看>>
UE4材质是什么样的机制
查看>>
使用QTP录制自带Flight小实例
查看>>
JProfiler学习笔记
查看>>
Loadrunner脚本编程(4)-数据类型操作和字符串操作
查看>>
arpg网页游戏之地图(二)
查看>>
SQL SERVER 2008取出XML数据
查看>>
STL 算法
查看>>