zoukankan      html  css  js  c++  java
  • HDU 2004 成绩转换

    http://acm.hdu.edu.cn/showproblem.php?pid=2004

    Problem Description
    输入一个百分制的成绩t,将其转换成对应的等级,具体转换规则如下:
    90~100为A;
    80~89为B;
    70~79为C;
    60~69为D;
    0~59为E;
     
    Input
    输入数据有多组,每组占一行,由一个整数组成。
     
    Output
    对于每组输入数据,输出一行。如果输入数据不在0~100范围内,请输出一行:“Score is error!”。
     
    Sample Input
    56
    67
    100
    123
     
    Sample Output
    E
    D
    A
    Score is error!
     
    代码:
    #include <bits/stdc++.h>
    
    using namespace std;
    
    int main()
    {
        int n;
        while(~scanf("%d",&n))
        {
            if(n>100||n<0)
                printf("Score is error!
    ");
               else
               {
                   if(n>=90&&n<=100)
                printf("A
    ");
            else if(n>=80&&n<=89)
                printf("B
    ");
            else if(n>=70&&n<=79)
                printf("C
    ");
            else if(n>=60&&n<=69)
                printf("D
    ");
            else
                printf("E
    ");
               }
        }
        return 0;
    }
    

      

  • 相关阅读:
    bzoj 3924
    bzoj 1095
    luogu 4886
    bzoj 2152
    CF960G
    bzoj 3561
    bzoj 4176
    bzoj 4407
    bzoj 3309
    luogu 4608
  • 原文地址:https://www.cnblogs.com/zlrrrr/p/9321146.html
Copyright © 2011-2022 走看看