#include <iostream>
2023-07-15 09:43:21
发布于:上海
4阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main(){
double a,b,c;
cin >> a >> b >> c;
if(((a+b)>c) and ((a+c)>b) and ((b+c)>a)) {
cout << "yes";
}else{
cout << "no";
}
return 0;
}
这里空空如也
有帮助,赞一个