2 条题解

  • 0
    @ 2023-7-18 21:09:18
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    int a,b,c;
    cin>>a>>b>>c;
    if (a+b>c && a+c>b && b+c>a)
    cout<<"Yes";
    else
    (cout<<"No");
    return 0;
    }
    
    • 0
      @ 2022-11-5 14:35:40
      #include<bits/stdc++.h>
      using namespace std;
      int main(){
      	int a,b,c;
      	cin>>a>>b>>c;
      	if (a+b>c && a+c>b && b+c>a)
      	   cout<<"Yes";
      	else
      	   (cout<<"No");
      	return 0;
      }
      
      
      
      
      • 1

      信息

      ID
      40
      时间
      1000ms
      内存
      16MiB
      难度
      3
      标签
      递交数
      197
      已通过
      103
      上传者