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

hdoj:2061

时间:2016-11-10 12:04:38      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:space   for   pre   double   bsp   stream   std   string   int   

#include <iostream>
#include <string>

using namespace std;

int main()
{
    int n,k;
    double gpa,s,credit,score;
    string name;
    bool flag = true;
    cin >> n;
    while (n--)
    {
        cin >> k;
        gpa = 0.0;
        s = 0.0;
        flag = true;
        for (int i = 1; i <= k; i++)
        {
            cin >> name >> credit >> score;
            gpa += credit * score;
            s += credit;
            if (60 - score >0.000001)
                flag = false;
        }
        
        gpa = gpa *1.0/ s;
        if (flag)
            printf("%.2lf\n", gpa);
        else
            printf("Sorry!\n");

        if (n != 0)
            printf("\n");
    }
    return 0;
}

 

hdoj:2061

标签:space   for   pre   double   bsp   stream   std   string   int   

原文地址:http://www.cnblogs.com/theskulls/p/6050195.html

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