I'm sorry to bother you busy people with this probably obvious question, but the compiler wont give me anything except:
Arithmetic.java:4: error: null: 146367789778966
int myNumber = 3 + 146367789778966;
^
1 error
Code
public class Arithmetic {
public static void main(String[] args) {
int myNumber = 3 + 146367789778966;
System.out.println(myNumber);
}
}
If anyone can tell me whats wrong, that would be great!