40 条题解

  • -1
    @ 2024-2-23 10:53:15

    #include using namespace std; int main(){ int n; cin>>n; if(n%2==1){ cout<<"odd"; }else{ cout<<"even"; } return 0; }

    • -1
      @ 2024-2-23 10:13:07
      #include<bits/stdc++.h>
      using namespace std;
      int main(){
      	int s,z;
      	cin>>s>>z;
      	if(s>z){
      	cout<<">";}
      	if(s==z){
      		cout<<"=";}
      		if(s<z){
      			cout<<"<"; }
      	return 0;
      }
      
      • -1
        @ 2024-2-23 10:13:02
        #include<bits/stdc++.h>
        using namespace std;
        int main(){
        	int s,z;
        	cin>>s>>z;
        	if(s>z){
        	cout<<">";}
        	if(s==z){
        		cout<<"=";}
        		if(s<z){
        			cout<<"<"; }
        	return 0;
        }
        
        • -1
          @ 2024-2-23 9:52:40

          #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; }

          • -1
            @ 2024-2-23 9:51:11

            #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; }

            • -1
              @ 2024-2-23 9:45:15

              #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; }

              • -1
                @ 2024-2-23 9:44:36

                #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; }

                • -1
                  @ 2024-2-23 9:38:38

                  #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; }

                  • -1
                    @ 2024-2-23 9:33:10

                    #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; }

                    • -1
                      @ 2024-2-23 9:26:45
                      #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;
                      }
                      
                      • -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
                                          难度
                                          5
                                          标签
                                          (无)
                                          递交数
                                          1843
                                          已通过
                                          669
                                          上传者