返回列表 發帖

switch 判斷式

  1. import java.util.Scanner;
  2. public class ch16    //類別
  3. {
  4.     public static void main(String args[])   //主方法
  5.     {
  6.           Scanner s=new Scanner(System.in);
  7.           int score, level;
  8.           System.out.print("請輸入你的成績: ");
  9.           score=s.nextInt();
  10.           level=score/10;
  11.           switch(level)
  12.           {
  13.                case 10:
  14.                    System.out.println("太神了!");
  15.                    break;
  16.                case 6: case 7: case 8: case 9:
  17.                    System.out.println("及格了!");
  18.                    break;
  19.                case 0: case 1: case 2: case 3: case 4: case 5:
  20.                    System.out.println("不及格!");
  21.                    break;
  22.                default:
  23.                    System.out.println("輸入錯誤!");
  24.           }
  25.     }
  26. }
複製代碼

返回列表