本文主要是介绍【C语言】(百分制)输入成绩得到对应等级(if~else),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
输入一个分数得到对应的等级。
85~100 等级A;
75~84 等级B;
60~74 等级C;
0~59 等级D;
其他分数 报错!
本题用if else 语句的嵌套进行解答。
代码如下:
#include <stdio.h>
int main()
{int score;printf("\n\t请输入您的分数:");scanf("%d",&score) ;if(score<=100&&score>0){if(score>=85) printf("\n\t等级为:A\n");else if(score>=75) printf("\n\t等级为:B\n");else if(score>=60) printf("\n\t等级为:C\n");else if(score<60) printf("\n\t等级为:D\n");} elseprintf("输入分数错误");return 0;
}
运行结果:
这篇关于【C语言】(百分制)输入成绩得到对应等级(if~else)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!