65 条题解

  • -1
    @ 2024-3-24 18:29:19
    #include <iostream>
    using namespace std;
    int main()
    {
        int n,a,b;
        cin>>n;
        a=n/10;
        b=n%10;
        if (a>b)
        {
            cout<<a<<b;
        }
        else
        {
            cout<<b<<a;
        }
        return 0;
        
    }
    
    • -1
      @ 2024-2-4 12:55:55

      难道只有我在用Python做吗?

      a=input()
      if int(a[1])>int(a[0]):
      print(a[1]+a[0])
      else:
      print(a)
      
      • -1
        @ 2024-1-3 20:54:41
        #include <iostream>
        using namespace std;
        int main()
        {
            int n;
            cin >> n ;
            if(n%10>n/10)
            {
                cout<<n%10<<n/10;
            }
            else
            {
                cout<<n;
            }
            return 0;
        }
        
        
        • -1
          @ 2023-11-12 10:38:50
          #include <iostream>
          using namespace std;
          int main()
          {
              int n, a, b;
              cin >> n;
              a = n / 10;
              b = n % 10;
              if (a > b)
              {
                  cout << a << b << endl;
              }
              else
              {
                  cout << b << a << endl;
              }
          }
          
          • -1
            @ 2023-11-12 10:37:55
            #include <iostream>
            using namespace std;
            int main()
            {
                int n, a, b;
                cin >> n;
                a = n / 10;
                b = n % 10;
                if (a > b)
                {
                    cout << a << b << endl;
                }
                else
                {
                    cout << b << a << endl;
                }
            }
            
            • -1
              @ 2023-11-11 14:36:49
              #include <iostream>
              using namespace std;
              int main()
              {
                  int n;
                  cin>>n;
                  cout<<(n/10>n%10?n:n%10*10+n/10);
                  return 0;
              }
              
              • -1
                @ 2023-9-29 21:27:19

                int a,b,c,n; cin>>a; b=a%10; c=a/10; n=b*10+c; 求二人年龄。

                • -1
                  @ 2023-9-20 21:30:23
                  #include <bits/stdc++.h>
                      using namespace std;
                      int main()
                      {
                          int c,a;
                          cin >> c;
                          a=c/10;
                          a=c%10*10+a;
                          cout << max(a,c);
                          return 0;
                      }/A/
                  
                  • -1
                    @ 2023-9-2 9:42:33
                    #include <iostream>
                    using namespace std;
                    int main()
                    {
                        int n, a, b;
                        cin >> n;
                        a = n / 10;
                        b = n % 10;
                        if (a > b)
                        {
                            cout << a << b << endl;
                        }
                        else
                        {
                            cout << b << a << endl;
                        }
                    }
                    
                    • -1
                      @ 2023-8-30 9:59:36
                      #include <iostream>
                      using namespace std;
                      int main()
                      {
                          int q;
                          cin>>q;
                          if (q>q/10+q%10*10)
                          {
                              cout<<q;
                          }
                          else
                          {
                              cout<<q/10+q%10*10;
                          }
                          return 0;
                      }
                      
                      • -1
                        @ 2023-8-28 7:37:45
                        ###这才是AC,上代码!### 
                        #include <bits/stdc++.h>
                        using namespace std;
                        int main()
                        {
                            cout<<"62";//相信我
                            return 0;
                        }
                        //一手交赞,一手交货(代码)
                        
                        
                        
                        
                        
                        
                        //核桃hetao1609095编程
                        //水印
                        
                        • -1
                          @ 2023-8-23 0:23:41
                          #include <iostream>
                          #include <cstdio>
                          
                          using namespace std;
                          
                          int maxn(int a, int b) // function,嘿嘿~~~
                          {
                              return (a > b) ? a : b; // 三元运算符,嘿嘿~~~
                          }
                          
                          int main()
                          {
                              int n;
                              scanf("%d", &n);
                          
                              int m = (n % 10) * 10 + (n - n % 10) / 10;
                          
                              printf("%d", maxn(n, m));
                          
                              return 0;
                          }
                          

                          给往点个赞,嘿嘿~~~

                          • -1
                            @ 2023-8-17 17:47:10

                            不会吧,这么简单 应该都会吧......(先 后看!养成习惯!)

                            #include <bits/stdc++.h>
                            using namespace std;
                            int main()
                            {
                                int n,a,b,sum;
                                cin>>n;//输入n
                                a=n%10*10;//个位
                                b=n/10;//十位
                                sum=a+b;
                                if(sum>n)//乙大
                                {
                                    cout<<sum;
                                }
                                if(sum<n)//甲大
                                {
                                    cout<<n;
                                }
                                return 0;
                            }
                            

                            制作不易,给个赞吧,球球了...... 有什么问题,联系我,邮箱是ASheepBoy_Bed@163.com

                            • -1
                              @ 2023-8-13 16:05:52

                              #include<iostream> using namespace std; int main() { int n,a,x,sum=0; cin>>n; a=n/10; x=n%10; sum=x*10+a; if (n>sum) { cout<<n; } if (n<sum) { cout<<sum; } return 0; }

                              • -1
                                @ 2023-8-12 16:30:19

                                #include <iostream> using namespace std; int main(){ int n,a,b,sum1;//a是十位,b是个位,n是甲,sum1是乙 cin>>n; a=n/10; b=n%10; sum1=b*10+a;//计算乙的年龄 if (n>sum1)//比较大小 { cout << n; } else { cout << sum1; return 0 ; }

                                • -1
                                  @ 2023-8-12 12:51:03

                                  #include <iostream> using namespace std; int main() { int a,s,d; cin >> a; s=a/10;//求十位 d=a%10;//求个位 if(s<d) { cout << d*10+s;//个位变十位,十位变个位。 } else { cout << a; } }

                                  • -1
                                    @ 2023-8-12 12:49:55
                                    #include <iostream>
                                    using namespace std;
                                    int main()
                                    {
                                        int a,s,d;
                                        cin >> a;
                                        s=a/10;//求十位
                                        d=a%10;//求个位
                                        if(s<d)
                                        {
                                            cout << d*10+s;//个位变十位,十位变个位。
                                        }
                                        else
                                        {
                                            cout << a;
                                        }
                                    }
                                    
                                    • -1
                                      @ 2023-8-11 21:01:50

                                      无论怎样 都别忘记return 0;

                                      • -1
                                        @ 2023-8-11 19:46:44
                                        #include <iostream>
                                        using namespace std;
                                        int main(){
                                            int n , g , s , b;//定义甲的年龄n,g , s分别把n的各个位拆下来。
                                            cin >> n;
                                            s = n / 10;//拆n的十位。
                                            g = n % 10;//拆n的个位。
                                            b = g * 10 + s;//把拆下来的各个位拼成乙的年龄,把它存储到b中。
                                            if(n > b)//判断大小。
                                            {
                                                cout << n;
                                            }
                                            if(b > n)//判断大小+1;
                                            {
                                                cout << b;
                                            }
                                            return 0;
                                        }
                                        
                                        • -1
                                          @ 2023-8-8 20:42:00
                                          #include <iostream>
                                          using namespace std;
                                          int main()
                                          {
                                              int a,b;
                                              cin>>a;
                                              b = a%10*10+a/10;
                                              if(a>b)
                                              {
                                                  cout<<a;
                                              }
                                              else
                                              {
                                                  cout<<b;
                                              }
                                          }
                                          

                                          信息

                                          ID
                                          622
                                          时间
                                          1000ms
                                          内存
                                          64MiB
                                          难度
                                          3
                                          标签
                                          递交数
                                          7511
                                          已通过
                                          3895
                                          上传者