多分支应用: 对学生成绩进行分类:90分以上优秀,80~89分良好,70~79分中等,60~69及格,60以下不及格。c语言编程
时间: 2024-10-21 16:02:03 浏览: 27
在C语言编程中,你可以使用if-else结构来实现多分支应用,针对学生成绩的不同范围进行分类。下面是一个简单的示例:
```c
#include <stdio.h>
int main() {
int score;
printf("请输入学生的成绩:");
scanf("%d", &score);
if (score >= 90) {
printf("成绩:优秀\n");
} else if (score >= 80 && score <= 89) {
printf("成绩:良好\n");
} else if (score >= 70 && score <= 79) {
printf("成绩:中等\n");
} else if (score >= 60 && score <= 69) {
printf("成绩:及格\n");
} else {
printf("成绩:不及格\n");
}
return 0;
}
阅读全文