3 条题解

  • 0
    @ 2023-11-26 14:29:21
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	int a,b,c;
    	cin>>a>>b>>c;
    	cout<<(a+b>c?"yes":"no");
    	return 0;
    }
    
    • 0
      @ 2022-10-29 14:17:53
      #include<iostream>
      using namespace std;
      int main(){
      	int a,b,c;
      	cin>>a>>b>>c;
      	if(a+b>c){
      	cout<<"yes";	
      	} 
      	else{
      		cout<<"no";	
      	}
      	return 0;
      } 
      
      • 0
        @ 2022-7-30 15:10:18
        #include<iostream>
        using namespace std;
        int main(){
        	int a,b,c;
        	cin>>a>>b>>c;
        	if(a+b>c) cout<<"yes";
        	else cout<<"no";
        	return 0;
        } 
        
        • 1

        信息

        ID
        30
        时间
        1000ms
        内存
        16MiB
        难度
        1
        标签
        递交数
        124
        已通过
        94
        上传者