将百分制成绩转换为abcde五个等级
时间: 2023-04-23 08:04:07 浏览: 479
将百分制成绩转换为abcde五个等级,通常是按照以下标准进行转换:
A:90分及以上
B:80-89分
C:70-79分
D:60-69分
E:60分以下
根据这个标准,可以将百分制成绩转换为相应的等级,方便进行评估和比较。
相关问题
将百分制成绩转换为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"
好的,以下是对应的C语言代码:
```c
#include <stdio.h>
int main() {
int score;
printf("input the score :");
scanf("%d", &score);
// 判断成绩范围并输出相应等级
if (score >= 0 && score <= 100) {
if (score >= 90 && score <= 100) {
printf("score=%d-->A\n", score);
} else if (score >= 80 && score < 90) {
printf("score=%d-->B\n", score);
} else if (score >= 70 && score < 80) {
printf("score=%d-->C\n", score);
} else if (score >= 60 && score < 70) {
printf("score=%d-->D\n", score);
} else {
printf("score=%d-->E\n", score);
}
} else {
printf("score=%d is error!\n", score);
}
return 0;
}
```
希望能对你有所帮助!
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"
以下是 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)。
阅读全文