noshin98

uva 11777

Jun 26th, 2016
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.09 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int t,a,b,d,e,f,c1,c2,c3,sum,i;
  5.     while(scanf("%d",&t)==1)
  6.     {
  7.         for(i=1;i<=t;i++)
  8.         {
  9.  
  10.             scanf("%d%d%d%d%d%d%d",&a,&b,&d,&e,&c1,&c2,&c3);
  11.             if(c1>=c2&&c2>=c3||c2>=c1&&c1>=c3)
  12.             {
  13.                 f=(c1+c2)/2;
  14.             }
  15.             else if(c2>=c3&&c3>=c1||c3>=c2&&c2>=c1)
  16.             {
  17.                 f=(c2+c3)/2;
  18.             }
  19.              else if(c1>=c3&&c3>=c2||c3>=c1&&c1>=c2)
  20.             {
  21.                 f=(c1+c3)/2;
  22.             }
  23.             sum=a+b+d+e+f;
  24.             if(sum>=90)
  25.             {
  26.                 printf("Case %d: A\n",i);
  27.             }
  28.             else if(sum>=80)
  29.             {
  30.                 printf("Case %d: B\n",i);
  31.             }
  32.             else if(sum>=70)
  33.             {
  34.                 printf("Case %d: C\n",i);
  35.             }
  36.             else if(sum>=60)
  37.             {
  38.                 printf("Case %d: D\n",i);
  39.             }
  40.             else if(sum<60)
  41.             {
  42.                 printf("Case %d: F\n",i);
  43.             }
  44.         }
  45.     }
  46.     return 0;
  47. }
Add Comment
Please, Sign In to add comment