int x=2; x= x++ - x++ - --x + --x; System.out.println("After calculation x = "+x);
Answers
Answered by
1
Answer:
x = -6
x = 2
x = x++ - x++ - --x + --x
2 - 3 - 3 + 2
2 - 3 - 5
-6
Similar questions