码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 2393 Higher Math

时间:2014-08-01 00:10:00      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:style   color   java   os   strong   io   ar   new   

Higher Math

                                                                                 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

                                                                                                 Total Submission(s): 2291    Accepted Submission(s): 1262

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
int max(int a,int b)
{
    int T;
    if(a>b)
    {
        T=a;
        a=b;
        b=T;
    }
    return b;
}

int main()
{
    __int64 a[5];
    int cas;
    cin>>cas;
    int t=1;
    while(cas--)
    {
        cin>>a[1]>>a[2]>>a[3];
        cout<<"Scenario #"<<t<<":"<<endl;
        if(a[1]&&a[2]&&a[3])
        {
            sort(a+1,a+4);
         if(a[3]*a[3]==a[2]*a[2]+a[1]*a[1])
                cout<<"yes"<<endl<<endl;
          else
            cout<<"no"<<endl<<endl;
        }
        else
            cout<<"no"<<endl<<endl;

      t++;
    }

    return 0;
}


hdu 2393 Higher Math,布布扣,bubuko.com

hdu 2393 Higher Math

标签:style   color   java   os   strong   io   ar   new   

原文地址:http://blog.csdn.net/fanerxiaoqinnian/article/details/38323481

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!