**int myNumber =**
**System.out.println(myNumber);**
how do i answer this question?
int sum = 34 + 113;
int difference = 91 - 205;
int product = 2 * 8;
int quotient = 45 / 3;
**int myNumber =**
**System.out.println(myNumber);**
how do i answer this question?
int sum = 34 + 113;
int difference = 91 - 205;
int product = 2 * 8;
int quotient = 45 / 3;
You only have to set the variable myNumber to the product of two numbers. The product is when two numbers are multiplied. So 2 * 8 is a product. You can chose any two numbers to use.