5.8打卡

发布时间 2023-05-08 16:21:15作者: 软工人

#include <bits/stdc++.h>
using namespace std;
void swap(int &a,int &b)
    {
        int t=a;
        a=b;
        b=t;
    }
int main()
{
    int x=5,y=10;
    cout<<"x="<<x<<"  y="<<y<<endl;
    swap(x,y);
    cout<<"x="<<x<<"  y="<<y<<endl; 
    return 0;
}