给出一百分制成绩,要求输出成绩等级A、B、C 、D、E。其中90分以上为A,80~89为B,70~
给出一百分制成绩,要求输出成绩等级A、B、C 、D、E。其中90分以上为A,80~89为B,70~
日期:2017-05-24 11:55:16 人气:1
#include
int main()
{
int s;
printf("请输入一个成绩:");
scanf("%d", &s);
if(s>100 || s < 0)
{
printf("输入了一个错误的成绩。\n");
return 1;
}
char ch;
switch(s/10)