24 条题解

  • -2
    @ 2022-3-30 21:06:42

    #include<iostream>

    using namespace std;

    int main(){

    int a,b,c,d;
    
    cin>>a>>b>>c>>d;
    
    if(a+b>10){
    
    	cout<<a*b;
    
    }else{
    
    	if(b+c>5){
    
    		cout<<c*d;
    
    	}else{
    
    		if(d<10||a*c>100){
    
    			cout<<"Yes";
    		
            }else{
    
    			cout<<"No";
    
    		}
    
    	}
    
    }
    

    }

    • -2
      @ 2021-10-19 12:54:04
      1. a,b,c,d=map(int,input().split()) if a+b>10: print(ab) elif b+c>5: print(cd) elif d<10 or ac>100: print('Yes') elif d>=10 or ac<=100: print('No')
      • -3
        @ 2023-4-4 21:52:05

        #include<bits/stdc++.h> using namespace std; int main() { int a,b,c,d; cin>>a>>b>>c>>d; if(a+b>10) cout<<ab; else if(b+c>5) cout<<cd; else if(d<10||a*c>100) cout<<"Yes"; else cout<<"No"; return 0; }

      • -3
        @ 2022-2-9 22:05:13

        #include<iostream> using namespace std; int main() { int a,b,c,d,e,t; cin>>a>>b>>c>>d; e=ab; t=cd; if(a+b>10) { cout<<e; } else if(b+c>5) { cout<<t; } else if(d<10||a*c>100) { cout<<"Yes"; } else { cout<<"No"; } return 0; }

        信息

        ID
        887
        时间
        1000ms
        内存
        128MiB
        难度
        4
        标签
        递交数
        638
        已通过
        298
        上传者