当前位置: 代码迷 >> 综合 >> AcWing 811. 交换数值
  详细解决方案

AcWing 811. 交换数值

热度:71   发布时间:2023-11-22 13:39:45.0

文章目录

  • 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;
}