返回列表 發帖
  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 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. }
複製代碼

TOP

  1. package ch01;

  2. import java.util.Scanner;

  3. public class ch01
  4. {

  5.         public static void main(String[] args)
  6.         {
  7.         Scanner s=new Scanner(System.in);
  8.         int ans;
  9.         System.out.println("問答");
  10.                 System.out.println("高通旗艦處理器是以下哪一個?(1)S710(2)MTK670(3)A12X(4)S855");
  11.                 System.out.println("回答");
  12.                 ans=s.nextInt();
  13.                 switch(ans)
  14.                 {
  15.                     case 1:
  16.                            System.out.println("要猜也猜C沒人在猜A");
  17.                            break;
  18.                     case 2:
  19.                            System.out.println("要猜也猜C沒人在猜A");
  20.                            break;
  21.                     case 3:
  22.                            System.out.println("猜c不一定是答案");
  23.                            break;
  24.                     case 4:
  25.                            System.out.println("對了");
  26.                            break;
  27.                     default:
  28.                            System.out.println("哪裡有這個選項!!");
  29.             
  30.                 }
  31.         }

  32. }
複製代碼
回復 1# tonyh

TOP

返回列表