题解 | #汽水瓶#

汽水瓶

http://www.nowcoder.com/practice/fe298c55694f4ed39e256170ff2c205f

import java.util.*;

public class Main{
    public static void main(String[] args){
        Scanner scan = new Scanner(System.in);
        while (scan.hasNext()){
            int s = scan.nextInt();
            if(s == 0) continue;
            System.out.println(recWaterBottle(s,0));
        }
    }
    
    //使用递归
    private static int recWaterBottle(int s,int c){
        if (s <= 1) return c;
        int d = (s==2 ? s+1 : s) / 3;
        s = (s==2 ? s+1 : s) % 3 + d;
        c = c + d;
        return recWaterBottle(s,c);
    }
}
全部评论

相关推荐

offer多多的六边形战士很无语:看了你的博客,感觉挺不错的,可以把你的访问量和粉丝数在简历里提一下,闪光点(仅个人意见)
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务