C# 百钱买百鸡

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApp100鸡
{
    class Program
    {
        static void Main(string[] args)
        {


            Console.WriteLine("用百元钱买百只鸡,公鸡每只5元,母鸡每只3元,小鸡1元3只~那么它们各是几只?");
            int max = 100;
            for (int a = 0; a <= max / 5; a++)
                for (int b = 0; b <= max / 3; b++)
                    for (int c = 0; c <= max * 3; c++)
                        if ((a + b + c == 100) && (a * 5 + b * 3 + c / 3.0 == 100.0))
                            Console.WriteLine("公鸡:{0}\t母鸡:{1}\t小鸡:{2}", a.ToString().PadLeft(2, '0'), b.ToString().PadLeft(2, '0'), c.ToString().PadLeft(2, '0'));
            Console.WriteLine("完成");
            Console.ReadKey();
        }
    }
}

 

posted @ 2019-03-18 10:50  landv  阅读(739)  评论(0编辑  收藏  举报