本帖最后由 smile_joe 于 2013-4-23 20:13 编辑
import java.util.*;
public class Score{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
System.out.println("输入一个成绩:");
//键盘得到一个整数
int i=sc.nextInt();
//除以10,返回int 小数为直接抛除
int x=i/10;
//选择语句获取答案
switch (x) {
case 0: case 1: case 2: case 3: case 4: //没有结果,没有需求
case 5: System.out.println("D");break;
case 6: System.out.println("C");break;
case 7:
case 8: if (i <85) { System.out.println("B"); break; }
case 9:
case 10: System.out.println("A");
}
}
}
有没有更加简易的方法,..... |
|