Java程序练习-Peter's smokes


描述
Peter has n cigarettes. He smokes them one by one keeping all the butts. Out of k > 1 butts he can roll a new cigarette.
How many cigarettes can Peter have?

输入
Input is a sequence of 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.
样例输入
4 3
10 3
100 5
样例输出
5
14
124
参考代码

  1. import java.util.*;  
  2. public class Main {  
  3.     public static void main(String[] args) {  
  4.         Scanner cin = new Scanner(System.in);  
  5.         while(cin.hasNextInt()){  
  6.             int n,k,c,t;  
  7.             n = cin.nextInt();  
  8.             k = cin.nextInt();  
  9.             c = 0;  
  10.             t = 0;  
  11.             while(n > 0){  
  12.                 c += n;  
  13.                 t += n;  
  14.                 n = t / k;  
  15.                 t %= k;  
  16.             }  
  17.             System.out.println(c);  
  18.         }  
  19.     }  
  20. }  

相关内容