题解
2024-05-05 11:08:07
发布于:北京
0阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b,c;
cin >> a >> b >> c;
if(a+b<=c){
cout << "no";
return 0;
}
if(a+c<=b){
cout << "no";
return 0;
}
if(b+c<=a){
cout << "no";
return 0;
}
cout << "yes";
return 0;
}
这里空空如也
有帮助,赞一个