返回列表 發帖
  1. import java.util.Scanner;


  2. public class Ch01 {

  3.         public static void main(String[] args) {
  4.                 Scanner s=new Scanner(System.in);
  5.        int ans;
  6.        System.out.println("問答");
  7.        System.out.println("請問豬有幾隻腳?(1)一 (2)二 (3)三 (4)四 ");
  8.        System.out.print("請回答");
  9.        ans=s.nextInt();
  10.        switch(ans)
  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. }
複製代碼

TOP

  1. import java.util.Scanner;
  2. public class Ch03
  3. {

  4.         public static void main(String args[])
  5.         {
  6.                 Scanner s=new Scanner(System.in);
  7.                 int ans;
  8.                 System.out.println("<Brain Teasers>");
  9.                 System.out.println("How many legs do pigs have? 1. One leg 2. 2 legs 3. 3 legs 4. 4 legs");
  10.         System.out.print("Your answer is: ");
  11.         ans=s.nextInt();
  12.         switch(ans)
  13.         {
  14.            case 1:
  15.                    System.out.println("Do pigs hop now?");
  16.                    break;
  17.            case 2:
  18.                     System.out.println("Have you never seen a pig walk?");
  19.                     break;
  20.            case 3:
  21.                     System.out.println("You're the only pig here!");
  22.                     break;
  23.            case 4:
  24.                     System.out.println("Correct:)");
  25.                     break;
  26.                 default:
  27.                         System.out.println("Wrong input!");
  28.         }
  29.         }

  30. }
複製代碼

TOP

返回列表