Ver Mensaje Individual
  #1 (permalink)  
Antiguo 15/10/2006, 22:10
Fernando7x
 
Fecha de Ingreso: octubre-2006
Mensajes: 1
Antigüedad: 18 años, 2 meses
Puntos: 0
oye el metodo datInt () como le hago me marca error

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