예제 #1
0
        static void Main(string[] args)
        {
            int[] eggs = new int[5] {3, 2, 4, 2, 0};
            eggHunt hunter1 = new eggHunt();

            hunter1.hunt(eggs);
            Console.ReadKey();
        }
예제 #2
0
        static void Main(string[] args)
        {
            int[] eggs = new int[5] {
                3, 2, 4, 2, 0
            };
            eggHunt hunter1 = new eggHunt();

            hunter1.hunt(eggs);
            Console.ReadKey();
        }