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

南阳oj cigarettes

时间:2018-07-25 13:15:28      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:cin   out   main   end   clu   iostream   space   bsp   str   

#include<iostream>
using namespace std;
int main ()
{
int t;
cin>>t;
while(t--)
{
int n,k;
cin>>n>>k;
int count=n;
while(n>=k)
{
int tmp=n;
n=n/k;
count=count+n;
n=n+tmp%k;
}
cout<<count<<endl;
}
return 0;
}

 

题目同样是英文

循环条件是当剩余香烟总数大于K

下一次循环的香烟总数是上一次香烟总数:n/k+k%k,而count每次是加n/k

 

南阳oj cigarettes

标签:cin   out   main   end   clu   iostream   space   bsp   str   

原文地址:https://www.cnblogs.com/huanya/p/9365351.html

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