70 条题解

  • 0
    @ 2022-8-4 22:25:14

    可以使用switch或swap函数进行交换,注意使用万能头文件<bits/stdc++.h>

    • @ 2022-8-8 19:31:28

      开关语句?这样吗?

      switch(a>b)
      {
          case 1:cout<<b<<a;break;
          default:cout<<a<<b;break;
      }
      
    • @ 2022-8-8 19:32:41

      而且,switch和swap也只要iostream库,跟万能头有什么关系?

  • 0
    @ 2022-7-16 0:35:11

    chao,简单是简单,我把cout的<<写成>>,愣是瞅了半天才发现👀️😕

    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        int a,b;
        cin >> a >> b;
        if(a > b)//记得判断大小,OK?
        {
            cout << b << " " << a;
        }
        else
        {
            cout << a << " " << b;
        }
        return 0;
    }
    
    • @ 2023-3-19 21:12:11

      我是忘把两个数字中间用空格隔开了

  • -1
    @ 2023-9-25 20:42:09
    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
        int c , v;
        cin >> c >> v;
        if (c > v)
        {
            cout << v << " "<<c;
        }
        else
        {
            cout << c << " "<< v;
        }
        return 0;
    }//A
    
    • -1
      @ 2023-8-24 19:55:12
      #include<iostream>
      using namespace std;
      int main()
      {
          int a,b;zhao
          cin>>a>>b;
          if(a>b)
          {
              cout<<b<<" "<<a;
          }
          else
          {
              cout<<a<<" "<<b;
          }
      }我还是个小学生呢!哥哥姐姐们多照顾照顾我鸭~
      
      • -2
        @ 2022-8-22 19:40:17

        简单,注意细节👀️

        #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;
            }
            return 0;
        }
        
        • -2
          @ 2022-7-18 14:31:44
          int a,b;
          cin >> a >> b;
          if(a > b)
          {
          cout << b << " ";
          cout << a;
          }
          else
          {
          cout << a << " ";
          cout << b;
          }
          
          
          
          • -2
            @ 2022-7-14 15:24:42

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

            • -3
              @ 2022-8-23 11:00:13

              #include <iostream> using namespace std; int main() { int a,b; cin>>a>>b; if(a>b) { cout<<b<<" "<<a; } else { cout<<a<<" "<<b; } return 0; } 上代码~~~

              • -3
                @ 2022-8-22 7:54:36

                #include <iostream> using namespace std;

                int main()//代码只需要输入a和b,出b,a { int a,b; cin>>a>>b; cout<<a<<" "<<b; return 0; }

                • -5
                  @ 2022-5-22 15:48:12

                  这里就是一个if...esle...语句判断,只需要看准题目要求,进行交换输出就行

                      if(a>b){
                          cout<<b<<" "<<a;
                      }else{
                          cout<<a<<" "<<b;
                      }
                  

                  信息

                  ID
                  672
                  时间
                  1000ms
                  内存
                  16MiB
                  难度
                  3
                  标签
                  递交数
                  4897
                  已通过
                  2714
                  上传者