tijie
2023-08-17 18:13:45
发布于:广东
0阅读
0回复
0点赞
#include <stdio.h>
#include <iostream>
#include <math.h>
#include <iomanip>
using namespace std;
int main()
{
int a,b,c;
cin >>a >>b >>c;
if(a+b>c && b+c>a && c+a>b)
{
cout<<"yes";
}
else
{
cout<<"no";
}
}
这里空空如也
有帮助,赞一个