前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >HDUOJ-----2399GPA

HDUOJ-----2399GPA

作者头像
Gxjun
发布2018-03-22 13:08:59
7730
发布2018-03-22 13:08:59
举报
文章被收录于专栏:mlml

GPA

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 2310    Accepted Submission(s): 1359

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

Source

HDU “Valentines Day” Open Programming Contest 2009-02-14

水体:

代码:

代码语言:javascript
复制
 1 #include<stdio.h>
 2 #include<string.h>
 3 #include<stdlib.h>
 4 int main()
 5 {
 6     char str;
 7     int cnt=0,con=0;
 8     bool flag=true;
 9     while(scanf("%c",&str)!=EOF)
10     {
11        if(str==32) continue;
12         if(str==10)
13         {
14             if(flag)
15                 printf("%.2lf\n",(double)1.0*cnt/con);
16             else
17                 printf("Unknown letter grade in input\n");
18             flag=true;
19             con=0;
20             cnt=0;
21             continue;
22         }
23         switch(str)
24         {
25           case 'A':  cnt+=4; break;
26           case 'B':  cnt+=3; break;
27           case 'C':  cnt+=2; break;
28           case 'D':  cnt++; break;
29           case 'F':         break;
30           default:  flag=false; break;
31         }
32         con++;
33     }
34  return 0;
35 }
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2014-04-11 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • GPA
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档