c语言输入成绩怎么判断等级
时间:2021-04-27 11:32
判断方法:1、用“switch(成绩/10){case 9:A;..case 6:D;default:E;}”语句;2、用“if(成绩>=90)A;else if(成绩>=80)B;..else if(成绩>=60)D;elseE;”语句。 本教程操作环境:windows7系统、c99版本、Dell G3电脑。 分析:我们既可以使用else if来进行判断也可以使用switch case来进行判断。 题目要求如下:输入学生成绩,自动判断等级 使用switch...case语句判断等级 使用else if语句 1、使用switch…case语句判断等级 运行结果 2、使用if..else..if语句 运行结果 相关推荐:《C语言视频教程》 以上就是c语言输入成绩怎么判断等级的详细内容,更多请关注gxlsystem.com其它相关文章!成绩 等级 90<=score<=100 A等级 80<=score<90 B等级 70<=score<80 C等级 60<=score<70 D等级 0<score<60 E等级 C语言中输入成绩后自动判断等级功能的两种实现方式
#include <stdio.h>
int main()
{
int i;
scanf("%d",&i);
i/=10;
switch(i){
case 9:
printf("A");
break;
case 8:
printf("B");
break;
case 7:
printf("C");
break;
case 6:
printf("D");
break;
default:
printf("E");
break;
}
return 0;
}
#include <stdio.h>
int main()
{
int score;
scanf("%d",&score);
if(score>=90)printf("A");
else if(score>=80)printf("B");
else if(score>=70)printf("C");
else if(score>=60)printf("D");
else printf("E");
return 0;
}