Hello! I'm getting a numberformatexception when I run this code:
public static void main(String[] arg) { String japp = "3606227810"; int iJapp; iJapp = Integer.parseInt(japp); }
But not when I run
public static void main(String[] arg) { String japp = "360622781"; int iJapp; iJapp = Integer.parseInt(japp); }
Why is that?
/Hank