1. 程式人生 > >C#趣味程序---三色球問題

C#趣味程序---三色球問題

i++ art ram -s dsm font c# tel ack

問題:若一個口袋中放有12個球,3紅3白和6黑,問從袋中隨意取8個球,有多少種不同的顏色搭配?

using System;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("共同擁有下面幾種取法:"+‘\n‘+"<-------------------------------------------------------->");
            int n = 0;
            for (int i = 0; i <= 3; i++)
                for (int j = 0; j <= 3; j++)
                    if ((8 - i - j <= 6))
                        Console.WriteLine("Way{0}.紅:{1}個    白:{2}個    黑:{3}個",string.Format("{0,-2}",++n),i,j,8-i-j);
            Console.ReadLine();
        }
    }
}


C#趣味程序---三色球問題