题解 100% AC
2025-08-02 13:15:28
发布于:江苏
5阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b,c;cin>>a>>b>>c;
bool d=1;
if(a+b<=c||a+c<=b||b+c<=a)d=0;
if(d)cout<<"yes";
else cout<<"no";
return 0;
}
这里空空如也
有帮助,赞一个