Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            DiceGame g = new DiceGame();

            if (g.Play())
            {
                System.Console.WriteLine("You are a winner");
            }
            else
            {
                System.Console.WriteLine("Sorry");
            }
        }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            Console.WriteLine("Hello Dice World");

            DiceGame g = new DiceGame();

            if (g.Play())
            {
                Console.WriteLine("Win");
            }
            else
            {
                Console.WriteLine("Loose");
            }

            Console.ReadLine();
        }