2 条题解

  • 2
    @ 2024-10-24 16:23:24

    思路

    先输入ab,然后输出ba即可。

    题解

    #include <iostream>
    #include <cstdio>
    using namespace std;
    int main()
    {
      	int a,b;
        cin>>a>>b;
        cout<<b<<" "<<a;
        return 0;
    }
    
    • 2
      @ 2024-10-20 10:35:19

      好多水题啊!! 思路 先输入ab在输出ba AC Code

      ```cpp
      #include<bits/stdc++.h>
      using namespace std;
      int main(){
      	int a,b;
          cin>>a>>b;
          cout<<b<<" "<<a;
      	return 0;
      }
      
      • 1

      信息

      ID
      18
      时间
      1000ms
      内存
      256MiB
      难度
      1
      标签
      递交数
      85
      已通过
      35
      上传者