noshin98

uva11854

Jun 26th, 2016
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.59 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     long long int a,b,c;
  5.     while(scanf("%lld%lld%lld",&a,&b,&c)==3)
  6.     {
  7.         if(a==0&&b==0&&c==0)
  8.             break;
  9.         if(a<=0||b<=0||c<=0)
  10.         {
  11.             printf("wrong\n");
  12.         }
  13.         if(a*a+b*b==c*c)
  14.         {
  15.             printf("right\n");
  16.  
  17.         }
  18.         else if(a*a+c*c==b*b)
  19.         {
  20.             printf("right\n");
  21.  
  22.         }
  23.         else if(b*b+c*c==a*a)
  24.         {
  25.             printf("right\n");
  26.  
  27.         }
  28.         else
  29.         {
  30.             printf("wrong\n");
  31.         }
  32.  
  33.  
  34.     }
  35.  
  36.  
  37.     return 0;
  38. }
Add Comment
Please, Sign In to add comment