题目内容
以下是用swith语句判断学生成绩等级的程序,读懂程序,并在括号处填上合适的代码import java.util.Scanner;public class Sample {public static void main(String[] args) {int score;System.out.println("请输入一个整数:");Scanner s=new Scanner(System.in);score=s.nextInt();if ( ) { //如果输入的数字超出成绩的范围System.out.println("输入有误");return;// 这里就直接退出了}switch (score / 10) {case ( ):case 9:System.out.println("A");break;case 8:System.out.println("B");break;case 7:System.out.println("C");break;case 6:System.out.println("D");break;( ):System.out.println("E");}}}//这个程序还不是特别健壮,如果输入的数不是整数或输入的数超过整数范围,会出错
查看答案
搜索结果不匹配?点我反馈
更多问题