Java switsh的運用

蓯芯開矢發表於2024-11-02

import java.util.Scanner;


public class 第二 {

public 第二() {
// TODO Auto-generated constructor stub
}

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
  Scanner scan = new Scanner(System.in);
  int i_score;
  System.out.println("請輸入一個數=");
  i_score = scan.nextInt();    //輸入一個整數
  i_score /=10;      //得到原始的分數段
  switch(i_score)
  {
    case 10:      //[90,100]範圍內的分值都屬於優秀級別
    case 9:System.out.println("成績為 優秀 !");
    break;
    case 8:System.out.println("成績為 良好 !");
    break;
    case 7:System.out.println("成績為 中等 ! ");
    break;
    case 6:System.out.println("成績為 及格 ! ");
    break;
    default:System.out.println("成績為 不及格 ! ");
    }
  }

}

相關文章