技术的乐趣在于分享,欢迎多多交流,多多沟通。
全部博文(877)
优秀的博客地址(8)
2021年(2)
2016年(20)
2015年(471)
2014年(358)
2013年(26)
分类: iOS平台
2015-06-30 18:24:22
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
#include <iostream>
int main(){ int a, b; std::cin>>a>>b; a ^= b; b ^= a; a ^= b; std::cout<<a<<" "<<b; return 0; } |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
点评
maojinbing 强力要求上置顶贴 发表于 2015-4-6 09:54
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
#include <iostream>
int main(){ int a, b; std::cin>>a>>b; a ^= b; b ^= a; a ^= b; std::cout<<a<<" "<<b; return 0; } |