文章目录
- AcWing 811. 交换数值
- AC代码
AcWing 811. 交换数值
本题链接:AcWing 811. 交换数值
本博客给出本题截图:
AC代码
代码:
#include <iostream>using namespace std;void swap(int& x, int& y)
{
if (x == y) return;int t = x;x = y;y = t;
}int main()
{
int x, y;cin >> x >> y;swap(x, y);cout << x << ' ' << y << endl;return 0;
}