hdu_2039_三角形

来源:互联网 发布:任务栏淘宝图标删不掉 编辑:程序博客网 时间:2024/05/17 04:15


http://acm.hdu.edu.cn/showproblem.php?pid=2039

三角形

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 21012    Accepted Submission(s): 6724


Problem Description
给定三条边,请你判断一下能不能组成一个三角形。
 

Input
输入数据第一行包含一个数M,接下有M行,每行一个实例,包含三个正数A,B,C。其中A,B,C <1000;
 

Output
对于每个测试实例,如果三条边长A,B,C能组成三角形的话,输出YES,否则NO。
 

Sample Input
21 2 32 2 2
 

Sample Output
NOYES
 
#include<iostream>using namespace std;int main(){    int n;    double a,b,c;    cin>>n;    while(n--)    {        cin>>a>>b>>c;        if(a+b>c && a+c>b && b+c>a)            cout<<"YES"<<endl;        else            cout<<"NO"<<endl;    }    return 0;}