本帖最後由 tonyh 於 2012-8-18 17:28 編輯
利用 switch 判斷式, 改寫剛剛所寫的成績評論程式.- import java.io.Console;
- public class ch13
- {
- public static void main(String args[])
- {
- Console console=System.console();
- int score, level;
- System.out.print("請輸入你的成績: ");
- score=Integer.parseInt(console.readLine());
- level=score/10;
- switch(level)
- {
- case 10:
- System.out.print("哇!太神了!滿分!");
- break;
- case 9: case 8: case 7: case 6:
- System.out.print("恭喜你及格了!");
- break;
- case 5: case 4: case 3: case 2: case 1:
- System.out.print("哎呀!不及格!請再加油!");
- break;
- case 0:
- System.out.print("什麼?鴨蛋!你.....");
- break;
- default:
- System.out.print("輸入錯誤!");
- }
- }
- }
複製代碼 |