5 条题解
- 1
信息
- ID
- 612
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 2
- 标签
- (无)
- 递交数
- 238
- 已通过
- 138
- 上传者
#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<<"yes"; } else { cout<<"no"; } return 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<<"yes"; } else { cout<<"no"; } return 0; }