返回列表 發帖
  1. import java.util.Scanner;
  2. public class Ch10 {

  3.         public static void main(String[] args) {
  4.         Scanner s=new Scanner(System.in);
  5.         int answer;
  6.         System.out.println("<小米的腦殘問答>");
  7.         System.out.println("豬有幾隻腳?(1)一隻 (2)兩隻 (3)三隻 (4)四隻 ");
  8.         System.out.print("請回答:");
  9.         answer=s.nextInt();
  10.         switch(answer)
  11.         {
  12.             case 1:
  13.                     System.out.println("用跳的嗎?");
  14.                     break;
  15.             case 2:
  16.                     System.out.println("沒吃過豬肉也看過豬走路!");
  17.                     break;
  18.             case 3:
  19.                     System.out.println("你是豬啊?");
  20.                     break;
  21.             case 4:
  22.                     System.out.println("答對了!");
  23.                     break;
  24.             default:
  25.                     System.out.println("輸入錯誤!");
  26.                    
  27.         }

  28.         }

  29. }
複製代碼
May

TOP

返回列表