int x=3 , y=5;
y=y+ ++x + --x*2+x++ * --x;
System.out.println("x="+x);
System.out.println("y="+y);
Answers
Answered by
7
Answer:
y=80 x=3
Explanation:
y=y+ ++x + --x*2+ x++ * --x
y=5+3+4*2+4*4
y=5+3+8+16
y=8+8+16
y=16+16
y=32
if you like my answer then you have to follow me please.
Similar questions