Computer Science, asked by drishtikitty, 2 months ago

int x=3, y=5
y+=++x+--y*2+x++*--x;
System.out.println("x="+x);
System.out.println("y="+y);

please answer correctly and stepwise and answer as fast as possible​

Answers

Answered by eshanshinde52
0

Answer:

33

Explanation:

y+=4+4*2+4*4

y+=4+8+16

y+=28

5+28=33

Similar questions