这题的题目只需要知道如何判断三角形就好了
2025-08-25 20:07:24
发布于:天津
5阅读
0回复
0点赞
代码如下:
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b,c;
cin>>a>>b>>c;
if(a+b>c&&b+c>a&&a+c>b)cout<<"yes";
else cout<<"no";
return 0;
}
全部评论 1
为啥我的题解没人看?
1周前 来自 天津
0







有帮助,赞一个