代码如下:
int n = 10;
n += (n++)+(++n);
System.out.println(n);
解答:n = n + (n++) + (++n) => n = 10 + 10 + 12 = 32