博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2015华硕”硕士生”笔试题(瓶子问题)
阅读量:5313 次
发布时间:2019-06-14

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

饮料卖两块钱一瓶,两个空瓶子或者四个瓶盖均可以换一瓶新的饮料。10块钱可以喝多少瓶饮料?

 

public static int getDrinkCount(int money ,int price){        int bottleCount = 2;        int capCount = 4;        int bottle = 0;        int cap = 0;        int drinkCount = 0;                drinkCount = money / price;        bottle = drinkCount ;        cap = drinkCount ;        return getDrinkCount(drinkCount, bottle, cap, bottleCount, capCount);    }        private static int getDrinkCount(int drinkCount,int bottle,int cap ,int bottleCount,int capCount){                int count = bottle / bottleCount + cap / capCount;        drinkCount += count;        bottle = bottle % bottleCount + count;        cap = cap % capCount + count;        System.out.println(count +"=="+bottle +"=="+cap);        if (bottle < bottleCount && cap < capCount) {            return drinkCount;        }        return getDrinkCount(drinkCount, bottle, cap, bottleCount, capCount);    }

 

转载于:https://www.cnblogs.com/phyxis/p/5250340.html

你可能感兴趣的文章
consonant combination
查看>>
驱动的本质
查看>>
Swift的高级分享 - Swift中的逻辑控制器
查看>>
Swagger简单介绍
查看>>
Python数据分析入门案例
查看>>
vue-devtools 获取到 vuex store 和 Vue 实例的?
查看>>
Linux 中【./】和【/】和【.】之间有什么区别?
查看>>
内存地址对齐
查看>>
看门狗 (监控芯片)
查看>>
css背景样式
查看>>
JavaScript介绍
查看>>
开源网络漏洞扫描软件
查看>>
yum 命令跳过特定(指定)软件包升级方法
查看>>
创新课程管理系统数据库设计心得
查看>>
Hallo wolrd!
查看>>
16下学期进度条2
查看>>
Could not resolve view with name '***' in servlet with name 'dispatcher'
查看>>
Chapter 3 Phenomenon——12
查看>>
和小哥哥一起刷洛谷(1)
查看>>
遇麻烦,Win7+Ubuntu12.10+Archlinux12.10 +grub
查看>>