int x=2, y-5, z=3; System.out.println (x*-5); System.out.println (x+5); y+=x+=z; System.out.println (x+""+y+""+z);
Answers
Answered by
1
Answer:
yes
++x increments the value of x and then returns x
x++ returns the value of x and then increments
Explanation:
Mark me as brainleast
Similar questions