2 条题解

  • 0
    @ 2025-4-13 20:58:52
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        int n,m;
        cin>>n>>m;
        cout<<m<<" "<<n;
        return 0;
    }
    
    • 0
      @ 2024-12-22 11:04:00

      C++ :

      #include<iostream>
      using namespace std;
      int main()
      {
      int a,b;
      cin>>a>>b;
      cout<<b<<" "<<a<<endl;
      return 0;
      }
      
      • 1

      C语言程序设计教程(第三版)课后习题9.1

      信息

      ID
      190
      时间
      1000ms
      内存
      128MiB
      难度
      10
      标签
      (无)
      递交数
      3
      已通过
      3
      上传者