30 条题解

  • -1
    @ 2024-2-23 9:19:48
    #include <bits/stdc++.h>
    using namespace std;
    int main(){
        int a,b;
        cin>>a>>b;
        if (a>b)
        cout<<">";
        else
         if(a==b)
         cout<<"=";
        if(a<b)
         cout<<"<";
        return 0;
    }
    
    • -1
      @ 2024-2-23 9:18:25
      #include <iostream>
      using namespace std;
      int main()
      {
          int x,y;
          cin>>x>>y;
          if(x>y)
          {
              cout<<">";
          }
          if(x<y)
          {
              cout<<"<";
          }
          if(x==y)
          {
              cout<<"=";
          }
          return 0;
      }
      
      • -1
        @ 2024-2-22 20:56:24

        #include using namespace std; int main(){ int x,y; cin>>x>>y; if(x>y){ cout<<">"; } else if(x==y){ cout<<"="; } else{ cout<<"<"; } return 0; }

        • -1
          @ 2024-2-22 11:11:14

          👍👍👍👀️ 🚀️

          #include<iostram>
          using namespae std;
          int main(){
          	int a,b,c;
              cin>>a>>b;
              c=0;
              if(b-a>c){
              cout<<"<";
          }
              if(b-a==c){
              cout<<"=";
          }
              if(a-b>c){
              cout<<">";
          	}
              return 0;
          }
          
          • -2
            @ 2024-2-21 10:06:03
            #include<iostream>
            using namespace std;
            int main(){
            	int a,b,c;
                cin>>a>>b;
                c=0;
                if(b-a>c){
                cout<<"<";
            }
                if(b-a==c){
                cout<<"=";
            }
                if(a-b>c){
                cout<<">";
            	}
                return 0; 
            }
            
            • -4
              @ 2024-2-23 9:36:24
              #include<bits/stdc++.h>
              using namespace std;
              int main(){
                  int x,y;
                  cin>>x>>y;
                  if(x>y){
                  cout<<">"<<endl;
              }
                  if(x<y){
                  cout<<"<"<<endl;
              }
                  if(x==y){
                  cout<<"="<<endl;
              }
              return 0;
              }
              好心人帮忙点个赞
              
              • -5
                @ 2023-12-1 17:28:31

                #include using namespace std; int main(){ int x,y; cin>>x>>y; if(x<y) cout<<"<"; if(x==y) cout<<"="; if(x>y) cout<<">"; return 0; }

                • -7
                  @ 2024-2-21 9:57:51
                  #include<iostream>
                  using namespace std;
                  int main(){
                  	int a,b,c;
                      cin>>a>>b;
                      c=0;
                      if(b-a>c){
                      cout<<"<";
                  }
                      if(b-a==c){
                      cout<<"=";
                  }
                      if(a-b>c){
                      cout<<">";
                  	}
                      return 0; 
                  }
                  
                  • -8
                    @ 2024-2-20 10:58:35

                    wVTAESBHDRXZGVWTBESAW VVYRSEWGBUHDTGD

                    • -12
                      @ 2023-12-1 17:23:33

                      .......................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................

                      信息

                      ID
                      89
                      时间
                      1000ms
                      内存
                      512MiB
                      难度
                      6
                      标签
                      (无)
                      递交数
                      1291
                      已通过
                      384
                      上传者