解题思路:用if else 结构很容易写出来,但我就是想练一下switch~~
注意事项:注意switch case的结构!
参考代码:
#include<stdio.h>
int main(void)
{
char ch;
int x;
scanf("%d", &x);
if (x >= 80)
ch = 'a';
else if (x >= 60)
ch = 'b';
else if (x >= 40)
ch = 'c';
else
ch = 'd';
switch(ch)
{
case 'a': printf("A");
break;
case 'b': printf("B");
break;
case 'c': printf("C");
break;
default:printf("D");
}
return 0;
}
0.0分
3 人评分