C++交换a,b的值

来源:https://zhuanlan.zhihu.com/p/268734569 评论区

#include 
using namespace std;
int main()
{
	int a = 1;
	int b = 10;
	a = a + b - (b = a);
	cout<<a<<endl;
	cout<<b<<endl;
 }

你可能感兴趣的:(C++学习,c++)