3 条题解
-
1Infinity_ LV 8 @ 2024-06-25 18:48:10
先把最长边冒泡到c的位置
再看a+b是不是大于c#include<iostream> using namespace std; int main(){ ios::sync_with_stdio(false); int a, b, c; cin >> a >> b >> c; if(a > b)swap(a, b); if(b > c)swap(b, c); if(a+b > c)cout << "yes"; else cout << "no"; return 0; }
-
-22022-01-13 20:27:49@
#include<iostream> #include<cmath> 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"<<endl; else cout<<"no"<<endl; return 0; }
-
-22021-10-29 20:59:35@
#include<iostream>
#include<cmath>
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"<<endl;
else
cout<<"no"<<endl;
return 0;
}
//👍
- 1
信息
- ID
- 1708
- 难度
- 2
- 分类
- (无)
- 标签
- 递交数
- 248
- 已通过
- 146
- 通过率
- 59%
- 被复制
- 2
- 上传者