标签:clu class amp can stdio.h std include scanf pre
#include<stdio.h>
int main() {
int a, b, c;
scanf("%d%d%d", &a, &b, &c);
if (a + b > c&&a + c > b&&b + c > a)
{
printf("yes");
}
else
{
printf("no");
}
return 0;
}
标签:clu class amp can stdio.h std include scanf pre
原文地址:https://www.cnblogs.com/zhuzehua/p/9784585.html