题意:http://acm.hdu.edu.cn/showproblem.php?pid=2039
解答:
#include<stdio.h>
int main()
{
int n;
double a,b,c;
scanf("%d",&n);
while(n--)
{
scanf("%lf%lf%lf",&a,&b,&c);
if((a+b>c)&&(b+c>a)&&(a+c>b))
printf("YES\n");
else
printf("NO\n");
}
return 0;
}