题解
2023-08-07 10:18:38
发布于:浙江
1阅读
0回复
0点赞
#include <bits/stdc++.h>
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;
}
这里空空如也
有帮助,赞一个