Sunday, 28 December 2014

UVA 11777 - Automate the Grades(c file)

Problem Type : Ad hoc




#include<stdio.h>
int main()
{
    int t1,t2,f,at,ct1,ct2,ct3,c,d,n,i;
    while(scanf("%d",&n)==1)
    {
        for(i=1; i<=n; i++)
        {
           scanf("%d%d%d%d%d%d%d",&t1,&t2,&f,&at,&ct1,&ct2,&ct3);
        if(ct1<=ct2 && ct1<=ct3)
           c=(ct2+ct3)/2;
        else if(ct2<=ct1 && ct2<=ct3)
           c=(ct1+ct3)/2;
        else if(ct3<=ct1 && ct3<=ct2)
             c=(ct1+ct2)/2;
        d=t1+t2+f+at+c;
        if(d>=90)
        printf("Case %d: A\n",i);
        else if(d>=80)
        printf("Case %d: B\n",i);
        else if(d>=70)
        printf("Case %d: C\n",i);
        else if(d>=60)
        printf("Case %d: D\n",i);
        else if(d<60)
        printf("Case %d: F\n",i);

        }
    }

    return 0;
}

No comments:

Post a Comment

ট্রিগার এর মাধ্যমে ডাটা ইনসার্ট - insert data using Database Trigger (Mysql)

সর্বপ্রথম আমরা প্রবলেমটা বুঝিঃ আমি একটা টেবিলের একটা কলামের ভ্যালুর উপর ডিপেন্ড করে আরেকটা কলামে ডাটা insert করব । এই কাজটা ট্রি...