Tema: Leer y sumar
Ver Mensaje Individual
  #6 (permalink)  
Antiguo 23/11/2009, 06:00
Avatar de elAntonie
elAntonie
 
Fecha de Ingreso: febrero-2007
Mensajes: 894
Antigüedad: 17 años, 11 meses
Puntos: 10
Respuesta: Leer y sumar

Wenas

Tienes alguna llave mal cerrada o algun ; de menos.

Saludos.

PD. Por que tienes dos try anidados??

Código:
try { 
    linea = teclado.readLine();
    a = Integer.parseInt(linea);
}
catch (NumberFormatException e) {
System.err.println("ERROR");
}
catch (IOException e) {
System.err.print("ERROR");
}