卓耿里昂


私信TA

用户名:zgliang

访问量:2101

签 名:

极致产生美

等  级
排  名 10057
经  验 1113
参赛次数 0
文章发表 3
年  龄 0
在职情况 学生
学  校 上海应用技术大学
专  业

  自我简介:

  #include<stdio.h>
  void main()
  {
   int a;
    while (~scanf("%d", &a)){
        if (a>74 && a <= 100)
            a<90 ? printf("B\n") : printf("A\n");
        else if (a >= 0 && a<75)
            a>59 ? printf("C\n") : printf("D\n");
        else
            printf("Error!\n");
    }
  }

极致是一种美~

如果你有更优美的答案,

请一定在下方留言!谢谢~

 

0.0分

2 人评分

  评论区

如果是按行数算的化,我这里有一个
#include<stdio.h>
int main(void){
    int sc;
    while (~scanf("%d", &sc)) {
        sc > 100 || sc < 0 ? puts("Error!") : sc >=90 ? puts("A") :
        sc >=75 ? puts("B") : sc >=60? puts("C") : puts("D");
     }
}
2019-11-23 08:08:41
  • «
  • 1
  • »