1 条题解

  • 0
    @ 2025-3-22 10:41:04

    参考代码

    #include <bits/stdc++.h>
    using namespace std;
    void out_put(int x , int y){
        // todo swap data
        int t;
        t = x ;
        x = y ;
        y = t ;
        cout <<  x << " " << y << endl;
    }
    int main(){
        int x , y;
        cin >> x >> y;
        out_put(x,y);
        cout << x << " " << y;
        return 0;
    }
    

    信息

    ID
    1734
    时间
    1000ms
    内存
    256MiB
    难度
    8
    标签
    递交数
    16
    已通过
    6
    上传者