switch case语句判断1-100之间的成绩等级
public class Grade{
public static void main(String[] args) {
int i = 90; //想要控制台手动输入的可以把这里换成Scanner方法
int x;
if (i <= 60) { //用if条件来进行设定
x = 1;
} else if (i > 60 && i < 80) { //满足条件60以上80以下的赋值2,对应良好
x = 2;
} else if (i >= 80 && i < 100) {//满足条件80以上100以下的赋值3,对应优秀
x = 3;
} else { //剩下为满分
x = 4;
}
switch (x) {
case 1:
System.out.println(“成绩不及格”);
break;
case 2:
System.out.println(“成绩良好”);
break;
case 3:
System.out.println(“成绩优秀”);
break;
case 4:
System.out.println(“成绩满分”);
break;
default:
System.out.println(“default”);
}
}
}