给出一百分制成绩,要求输出成绩等级A、B、C 、D、E。其中90分以上为A,80~89为B,70~

2024-11-16 15:13:47
推荐回答(1个)
回答(1):

#include

int main()
{
int s;
printf("请输入一个成绩:");
scanf("%d", &s);
if(s>100 || s < 0)
{
printf("输入了一个错误的成绩。\n");
return 1;
}
char ch;
switch(s/10)
{
case 10:
case 9: ch = 'A'; break;
case 8: ch = 'B'; break;
case 7: ch = 'C'; break;
case 6: ch = 'D'; break;
default:
ch = 'E'; break;
}
printf("您输入的成绩等级为:%c\n", ch);
return 0;
}望采纳