Suppose x, y, and z are int variables and x = 2, y = 5, and z = 6. What is the output of each of the following statements?
a. System.out.println("x = " + x + ", y = " + y + ", z = " + z);
b. System.out.println("x + y = " + (x + y));
c. System.out.println("Sum of " + x + " and " + z + " is " + (x + z));
d. System.out.println("z / x = " + (z / x));
e. System.out.println(" 2 times " + x + " = " + (2 * x));
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.