HDU 2399 JAVA

来源:互联网 发布:worktile mac版 编辑:程序博客网 时间:2024/05/22 00:05

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

import java.util.Scanner;public class Main{    /**     * @author 胡龙华     */    public static void main(String[] args) {        Scanner sc = new Scanner(System.in);        while(sc.hasNext()){            boolean isWronger = false;            String str = sc.nextLine();            char a[] = str.replace(" ", "").toCharArray();            double sum=0;            for(int i=0;i<a.length;i++){                switch(a[i])                {                      case 'A':                           sum+=4;  break;                      case 'B':                           sum+=3;  break;                      case 'C':                           sum+=2;  break;                      case 'D':                           sum+=1;  break;                      case 'F':                           sum+=0;  break;                      default:                          isWronger = true;                       System.out.println("Unknown letter grade in input");                }            }            if(!isWronger)            System.out.println(String.format("%.2f", 1.0*sum/a.length));        }    }}
0 0
原创粉丝点击