不使用中间变量来交换两个变量的值
1. 使用加减法
int x = Integer.MAX_VALUE;int y = Integer.MAX_VALUE - 15;x = x + y;y = x - y;x = x - y;