Example #1
0
        static void Main(string[] args)
        {
            HanoiTower hanoi = new HanoiTower();

            Console.WriteLine("Enter number of discs: ");
            int n = Convert.ToInt32(Console.ReadLine());

            hanoi.moveDiscs(n, "Peg A", "Peg C", "Peg B");  // had to swap Peg B and C...
        }