27 条题解

  • -5
    @ 2024-2-23 10:03:09
    #include<bits/stdc++.h> 
    using namespace std;
    int main(){
        int a,b;
        cin>>a>>b; 
        if(a>=10 or b>=20){
            cout<<1; 
        }
        else{
            cout<<0;
        }
        return 0; 
    }
    
    • -5
      @ 2024-2-23 10:03:05
      #include<bits/stdc++.h> 
      using namespace std;
      int main(){
          int a,b;
          cin>>a>>b; 
          if(a>=10 or b>=20){
              cout<<1; 
          }
          else{
              cout<<0;
          }
          return 0; 
      }
      
      • -5
        @ 2024-2-23 10:02:38

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

        • -5
          @ 2024-2-23 10:02:32

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

          • -5
            @ 2024-2-22 21:34:00
            #include<bits/stdc++.h> 
            using namespace std;
            int main(){
                int a,b;
                cin>>a>>b; 
                if(a>=10 or b>=20){
                    cout<<1; 
                }
                else{
                    cout<<0;
                }
                return 0; 
            }
            
            • -5
              @ 2024-2-21 21:44:10

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

              • -5
                @ 2024-1-17 11:03:00

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

                信息

                ID
                2132
                时间
                1000ms
                内存
                256MiB
                难度
                2
                标签
                递交数
                1061
                已通过
                554
                上传者