class TestListaDoble
{
public static void main (String []arg)
{ ListaDoble a=new ListaDoble(); //creacion del objeto
int x;
int op;
do{
System.out.println("1 Carga ");
System.out.println("2 Imprimir ");
System.out.println("3 buscar ");
System.out.println("4 ");
System.out.println("5 ");
System.out.println("6 ");
System.out.println("0 fin ");
System.out.print(" Ingrse la opcion : ");
op=Leer.datoInt();
switch(op)
{
case 1:System.out.println(" Ingreso de datos a la lista ");
System.out.print(" Ingrese un numero entero [0 = FIN]");
x=Leer.datoInt();
while(x!=0)
{ a.insertarDoble(x);
System.out.print(" Ingrese un numero entero [0 = FIN]");
x=Leer.datoInt();
}
break;
case 2: a.imprimirLista();
break;
case 3 :System.out.print(" Ingrese un numero para buscar ");
x=Leer.datoInt();
a.buscar(x);
break;
}
}while(op!=0);
}
}
oye como le hago para k no me marque error en la parte op = Leer.datoInt ();
me marca k le metodo no se encuentra en la clase ListaDoble como le hago dime respondeme plis