题解
2023-01-13 08:53:26
发布于:江苏
575阅读
0回复
0点赞
#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";
}
return 0;
}
全部评论 1
哇
2024-10-15 来自 浙江
0
2023-01-13 08:53:26
发布于:江苏
#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";
}
return 0;
}
有帮助,赞一个