Пример #1
0
        public static void Main()
        {
            // This will not be called by the AMS, however you may want to test your Die class here.
            Dice myDice = new Dice(2);

            for (int i = 0; i < 1000; i++)
            {
                myDice.RollDice();
                Console.WriteLine(myDice.GetFaceValue());
            }
        }