法一:进行两个数加减; int x,y; x=x+y; y=x-y; x=x-y; 法二:int x=3,y=5; int z; z=x;x=y;y=z; 小弊端:相加可能超出int范围 法三:用异或解; x=x^y; y=x^y; x=x^y;