public class Arithmetic {
public static void main(String args) {
int myNumber = NEED HELP HERE;
System.out.println(myNumber);
}
}
public class Arithmetic {
public static void main(String args) {
int myNumber = NEED HELP HERE;
System.out.println(myNumber);
}
}
Hi @methodjumper00028 ,
For the *Math: +, -, , and / exercise, you need to assign to the variable, myNumber
, the result of multiplying two int
s, which are whole numbers. For example, you could do this:
int myNumber = 144 * 233;