编写代码实现如下内容:if语句实现,swhitch-case语句实现.
考试成绩分等级。
90~100 A等。
80-89 B等。
70-79 C等。
60-69 D等。
60以下 E等。
请根据给定成绩,输出对应的等级。
用if语句我写出来了
int a = 0;
if (a<0 || a>100) {
System.out.println("成绩输入错误,请重试");
}else if (a>=90) {
System.outprintln("A等");
}else if (a>=80) {
System.outprintln("B等");
}else if (a>=70) {
System.outprintln("C等");
}else if (a>=60) {
System.outprintln("D等");
}else {
System.outprintln("E等");
}
问一下用switch语句怎么写???
头大了,,,,,求指教!!!!
|
|