zoukankan      html  css  js  c++  java
  • hdu2399GPA

    Problem Description
    Each course grade is one of the following five letters: A, B, C, D, and F. (Note that there is no grade E.) The grade A indicates superior achievement , whereas F stands for failure. In order to calculate the GPA, the letter grades A, B, C, D, and F are assigned the following grade points, respectively: 4, 3, 2, 1, and 0.
     
    Input
    The input file will contain data for one or more test cases, one test case per line. On each line there will be one or more upper case letters, separated by blank spaces.
     
    Output
    Each line of input will result in exactly one line of output. If all upper case letters on a particular line of input came from the set {A, B, C, D, F} then the output will consist of the GPA, displayed with a precision of two decimal places. Otherwise, the message "Unknown letter grade in input" will be printed.
     
    Sample Input
    A B C D F B F F C C A D C E F
     
    Sample Output
    2.00 1.83 Unknown letter grade in input
     
    Author
    2006Rocky Mountain Warmup
    #include<iostream>
    #include<cstring>
    #include<cstdio>
    #include<cmath>
    
    using namespace std;
    
    char s[110000];
    int an[200];
    
    
    int main()
    {
        an['A'] = 4;an['B'] = 3;an['C'] = 2;an['D'] = 1;an['F'] = 0;
        int i,j,k,l;
        while(gets(s))
        {
            l = strlen(s);
            bool bl = 0;
            double sum = 0;
            int n = 0;
            for(i = 0;i<l;i++)
            {
                if(s[i] == ' ') continue;
                if(s[i]>='A'&&s[i]<='D'||s[i] == 'F')
                {
                    n++;
                    sum+=an[s[i]];
                }
                else
                {
                    bl = 1;
                    break;
                }
            }
            if(bl)
            {
                cout<<"Unknown letter grade in input"<<endl;
            }
            else
            {
                printf("%.2lf
    ",sum/n);
            }
        }
        return 0;
    }
  • 相关阅读:
    webapi支持session
    webapi返回数据同时支持xml与json
    webapi权限控制
    Asp.net 将js文件打包进dll 方法
    All Media to FLV asp.net在线视频自动转换并截图调试成功!
    未能从程序集“System.ServiceModel
    [javascript]浮动广告
    [python]multi thread tcp connect port scanner
    [vc]让你Y的用YY
    [python]扫描网站后台脚本
  • 原文地址:https://www.cnblogs.com/wos1239/p/4556903.html
Copyright © 2011-2022 走看看