首页 > 代码库 > 有趣的代码实例

有趣的代码实例

a,b交换

int a,b;
a=a^b;
b=a^b;
a=a^b
//这样ab的值就交换了

 

有趣的代码实例