30/12/2012, 20:11
|
| | | Fecha de Ingreso: octubre-2012 Ubicación: Madrid, Spain
Mensajes: 7
Antigüedad: 12 años Puntos: 1 | |
Respuesta: Clase Scanner metodo nextLine() lei en internet que despues de cada nextInt(); el buffer se queda sucio o algo así y que se debe poner (en mi caso) scan.nextLine(); despues de cada nextInt(); para que al volver a hacer nextLine(); capture la linea entera y no una cadena vacia como me hace a mi.. pero si lo pongo, al ejecutar, cuando llego a esa linea da error y por consola sale esto:
Exception in thread "main" java.util.InputMismatchException
at java.util.Scanner.throwFor(Unknown Source)
at java.util.Scanner.next(Unknown Source)
at java.util.Scanner.nextInt(Unknown Source)
at java.util.Scanner.nextInt(Unknown Source)
at exitae.unidad2.Main.main(Main.java:26)
no entiendo nada. : ( |