el programa si compila pero me sale el siguiente error:
Cita:
y aqui el codigo del programa:Exception in thread "main" java.lang.NumberFormatException: For input string: ""
at java.lang.NumberFormatException.forInputString(Num berFormatException.java:48)
at java.lang.Integer.parseInt(Integer.java:470)
at java.lang.Integer.parseInt(Integer.java:499)
at Practica23.main(Practica23.java:17)
at java.lang.NumberFormatException.forInputString(Num berFormatException.java:48)
at java.lang.Integer.parseInt(Integer.java:470)
at java.lang.Integer.parseInt(Integer.java:499)
at Practica23.main(Practica23.java:17)
import java.util.*;
Cita:
import java.util.*;
public class Practica23 {
static String Nombres[];
public static void main(String args []){
String Nom="";
int n=Integer.parseInt(Nom);
Nombres= new String[n];
Scanner teclado= new Scanner(System.in);
System.out.println("cuantos nombres son");
Nom=teclado.nextLine();
//guardar nombres en un arreglo
for(int i=0; i<Nombres.length;i++)
System.out.print("dame nombres"+Nombres[i]);
}
}
public class Practica23 {
static String Nombres[];
public static void main(String args []){
String Nom="";
int n=Integer.parseInt(Nom);
Nombres= new String[n];
Scanner teclado= new Scanner(System.in);
System.out.println("cuantos nombres son");
Nom=teclado.nextLine();
//guardar nombres en un arreglo
for(int i=0; i<Nombres.length;i++)
System.out.print("dame nombres"+Nombres[i]);
}
}
he tratado de buscar cual sea el error..pero no lo encuentro por eso solicito su ayuda...