杭电 HDU ACM 1555 How many days?
时间:2015-04-06 14:18:32
收藏:0
阅读:196
How many days?
Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 6194 Accepted Submission(s): 3624
Problem Description
8600的手机每天消费1元,每消费K元就可以获赠1元,一开始8600有M元,问最多可以用多少天?
Input
输入包括多个测试实例.每个测试实例包括2个整数M, k,(2 <= k <= M <= 1000).M = 0, k = 0代表输入结束.
Output
对于每个测试实例输出一个整数,表示M元可以用的天数。
Sample Input
2 2 4 3 0 0
Sample Output
3 5
Author
8600
Source
HDU 2006-12 Programming Contes
无聊,一天天研究,直到钱数为0.
#include<iostream> using namespace std; int main() { int m,k; while(cin>>m>>k,m+k) { int day=0,count=0; while(m) { day++; count++; m--; if(count==k) { m++; count=0; } } cout<<day<<endl; } return 0; }
原文:http://blog.csdn.net/lsgqjh/article/details/44901119
评论(0)