Tuesday, 10 February 2015

Solution Of Light Online Judge 1053

#include<stdio.h>
int main()
{
    long a,b,c,i,j,sum,temp,t,v;
    scanf("%d",&j);
    for(i=1;i<=j;i++){
        scanf("%ld%ld%ld",&a,&b,&c);
    if(a>=b && a>=c){
         temp=a;
         a=c;
         c=temp;}
     else if(b>=a && b>=c){
          temp=b;
          b=c;
          c=temp;}
      else if(c>=a && c>=b){
          temp=c;
          c=temp;}
          t=(a*a)+(b*b);
          v=(c*c);
          if(t==v){
            printf("Case %d: yes\n",i);
          }
          else{
            printf("Case %d: no\n",i);
          }


    }

}

No comments:

Post a Comment