C语言程序将百分制成绩转换为ABCDE五个等级(假设成绩都为整数值)。成绩范围为[0,100]. 相应等级为[90,100]是A,[80,90)是B,[70,80)是C,[60,70)是D,60以下为E **输入格式要求:"%d" 提示信息:"input the score :" **输出格式要求: 范围错误"score=%d is error!\n" 范围正确输出相应等级"score=%d-->A\n"
时间: 2023-11-27 10:50:12 浏览: 176
CASE-END示例-T-SQL_编程
以下是 C 语言程序的代码实现:
```
#include <stdio.h>
int main() {
int score;
printf("input the score: ");
scanf("%d", &score);
if (score < 0 || score > 100) { // 判断成绩是否在范围内
printf("score=%d is error!\n", score);
} else { // 在范围内则输出相应等级
printf("score=%d-->", score);
if (score >= 90) {
printf("A\n");
} else if (score >= 80) {
printf("B\n");
} else if (score >= 70) {
printf("C\n");
} else if (score >= 60) {
printf("D\n");
} else {
printf("E\n");
}
}
return 0;
}
```
程序运行时会提示用户输入成绩,然后判断是否在[0,100]范围内。如果不是,则输出“score=成绩 is error!\n”,如果是,则根据成绩输出相应的等级(A、B、C、D或E)。
阅读全文