A303.判断三角形
2025-08-17 19:50:34
发布于:江苏
0阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main(){
int a,b,c;
cin>>a>>b>>c;
if (a+b<=c || a+c<=b || b+c<=a){
cout<<"no";
}else{
cout<<"yes";
}
return 0;
}
这里空空如也
有帮助,赞一个