大概就是
原题链接:303.判断三角形2025-09-19 16:56:10
发布于:广东
#include <iostream>
using namespace std;
int main(){
int a,b,c;
cin>>a>>b>>c;
if((a+b)>c&&(a+c)>b&&(c+b)>a){
cout<<"yes";
}
else{
cout<<"no";
}
}
这里空空如也











有帮助,赞一个