买了10瓶酒,如果4个酒盖子或2个空酒瓶子可换1瓶酒,那么你最多可以喝几瓶酒?...

过年在家时,我弟给我出了个题,他说:“你买了10瓶酒,如果4个酒盖子或2个空酒瓶子可换1瓶酒,那么你最多可以喝几瓶酒?”于是我写了一下程序来计算。

// 4个盖子或两个瓶子可以换一瓶酒
        static void Main(string[] args)
        {
            // 一开始的酒数量
            int wineCount = 10;

            // 当前瓶子数量
            int bottleCount = wineCount;
            // 当前瓶盖数量
            int capCount = wineCount;
            // 得到的酒数量
            int getWine = wineCount;
            // 喝到的酒数量
            int getAllWine = wineCount;


            getAllWine = GetWineCount(bottleCount, capCount, getWine, getAllWine);

            Console.WriteLine($"喝到的酒数量:{getAllWine}");
            Console.ReadKey();
        }

        /// <summary>
        /// 
        /// </summary>
        /// <param name="bottleCount">瓶子数</param>
        /// <param name="capCount">瓶盖数</param>
        /// <param name="getWine">得到的酒数量</param>
        /// <returns></returns>
        static int GetWineCount(int bottleCount, int capCount, int getWine, int getAllWine)
        {
            if (bottleCount >= 2 || capCount >= 4)
            {
                getWine = bottleCount / 2 + capCount / 4;
                getAllWine += getWine;

                bottleCount = bottleCount % 2 + getWine;
                capCount = capCount % 4 + getWine;

                getAllWine = GetWineCount(bottleCount, capCount, getWine, getAllWine);
            }
            return getAllWine;
        }
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值