2 条题解

  • 1
    @ 2023-3-20 19:43:41

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

    • -1
      @ 2022-11-5 14:01:53

      #include<bits/stdc++.h>

      using namespace std;

      int main()

      {

      int a,b;

      cin>>a>>b;

      if(a>b)cout<<b<<" "<<a;

      else cout<<a<<" "<<b;

      }

      • 1

      【入门】请将2个数按照由小到大的顺序排列后输出

      信息

      ID
      416
      时间
      1000ms
      内存
      16MiB
      难度
      5
      标签
      递交数
      22
      已通过
      15
      上传者