

InterviewSolution
Saved Bookmarks
1. |
Int x=3, y=5y+=++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 |
Answer» Answer: 33 Explanation: y+=4+4*2+4*4 y+=4+8+16 y+=28 5+28=33 |
|