3 条题解

  • 2
    @ 2023-3-29 21:28:27
    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
        int n;
        cin >> n;
        cout << n % 10 * 10 + n / 10;
        return 0;
    }
    
    • 1
      @ 2023-4-7 21:37:02
      #include<bits/stdc++.h>
      using namespace std;
      int main()
      {
          int x;
          cin>>x;
          cout<<x%10<<x/10;
          return 0;
      }
      • 0
        @ 2023-9-25 20:55:57
        #include<bits/stdc++.h>
        using namespace std;
        int main()
        {
            int c;
            cin >> c;
            cout << c % 10 * 10 + c / 10;
            return 0;
        }//A
        
        • 1

        信息

        ID
        704
        时间
        1000ms
        内存
        16MiB
        难度
        1
        标签
        递交数
        76
        已通过
        61
        上传者