博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
输入一个整数score代表分数,根据分数输出等级(A-E)(用两种方式)
阅读量:5081 次
发布时间:2019-06-12

本文共 1109 字,大约阅读时间需要 3 分钟。

/*

 输入一个整数score代表分数,根据分数输出等级(A-E(用两种方式)

 A90~100

 B80~89

 C70~79

 D60~69

 E0~60

*/

 

#include <stdio.h>

 

int main()

{

    // 1.提示输入

    printf("请输入分数值:\n");

    

    // 2.接收输入

    int score;

    scanf("%d", &score);

    

    // 3.判断等级 (性能最高)

    if (score>=90 && score<=100) { // [90, 100]

        printf("A\n");

    } else if (score>=80) { // [80, 89]

        printf("B\n");

    } else if (score>=70) { // [70, 79]

        printf("C\n");

    } else if (score>=60) { // [60, 69]

        printf("D\n");

    } else { // (-, 59]

        printf("E\n");

    }

    

    /* 性能中等

    if (score>=90 && score<=100) { // [90, 100]

        printf("A\n");

    } else if (score>=80 && score<=89) { // [80, 89]

        printf("B\n");

    } else if (score>=70 && score<=79) { // [70, 79]

        printf("C\n");

    } else if (score>=60 && score<=69) { // [60, 69]

        printf("D\n");

    } else { // (-, 59]

        printf("E\n");

    }*/

    

    /* 性能最差

    if (score>=90 && score<=100) { // [90, 100]

        printf("A\n");

    }

    

    if (score>=80 && score<=89) { // [80, 89]

        printf("B\n");

    }

    

    if (score>=70 && score<=79) { // [70, 79]

        printf("C\n");

    }

    

    if (score>=60 && score<=69) { // [60, 69]

        printf("D\n");

    }

    

    if (score<=59) { // (-, 59]

        printf("E\n");

    }*/

    return 0;

}

转载于:https://www.cnblogs.com/sunyao/p/3754859.html

你可能感兴趣的文章
jenkins常用插件汇总
查看>>
c# 泛型+反射
查看>>
第九章 前后查找
查看>>
Python学习资料
查看>>
jQuery 自定义函数
查看>>
jquery datagrid 后台获取datatable处理成正确的json字符串
查看>>
ActiveMQ与spring整合
查看>>
web服务器
查看>>
网卡流量检测.py
查看>>
poj1981 Circle and Points 单位圆覆盖问题
查看>>
POP的Stroke动画
查看>>
SQL语句在查询分析器中可以执行,代码中不能执行
查看>>
yii 1.x 添加 rules 验证url数组
查看>>
html+css 布局篇
查看>>
SQL优化
查看>>
用C语言操纵Mysql
查看>>
轻松学MVC4.0–6 MVC的执行流程
查看>>
redis集群如何清理前缀相同的key
查看>>
Python 集合(Set)、字典(Dictionary)
查看>>
获取元素
查看>>