还有个靠初始化、++符号的题目
最后打印语句是System.out.println(x + y + ++x)
还是System.out.println(x + y++ + x)来着?
前者为7,后者为6