Saludos amigos por aqui les dejo un ejemplo de Recursividad Torres de Hanoi, con solucion automatica ademas con interrupcion para ver los movimientos de los discos. descarga desde aqui hanoi2 . /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package applets ; /** * * @author Jeison Nisperuza */ import java.awt.* ; import java.applet.* ; public class Hanoi2 extends Applet { static final int XDOTS = 400 ; static final int YDOTS = 200 ; static final int NULL = - 1 ; static final int MAX = 20 ; static final int MIN = 3 ; static final int MAXCOLS = 6 ; static final int MINCOLS = 3 ; static final Color cfondo = new Color ( 228 , 233 , 243 ); static final Color cbarra = Color . black ; static final Color cfin = Color . red ; static final Color ctorre = Color . blue ; boolean first = true ; int origen , destino ; int movimient