Hi, I would like to insert by the user some numbers and send those numbers to a function that would check the numbers.
my code is like that:
but for some reseaon the first character is empryCode:chooseNum = scan.next(); // the user type a numbers
String [] chooseNun1 = chooseNum.split("");
for (int j = 0; j < chooseNun1.length; j++)
{
System.out.println("choose:" + chooseNun1[j]);
}
Can anyone help me with that?
Thanks,Elen

