/********************************************************************** * Author: Eric Heim * Date Created: 7/19/2011 * Course: CS0007 * Description: Solves the towers of hanoi problem by calling the * constructor of the Hanoi class **********************************************************************/ public class HanoiDemo { public static void main(String[] args) { Hanoi solveIt = new Hanoi(3); } }