返回列表 發帖

switch 判斷式

運用 switch 語法,設計一個有趣的選擇題。



參考回應
1. 用跳的嗎?
2. 沒吃過豬肉也看過豬走路!
3. 你是豬啊?
4. 答對了!
  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. }
複製代碼

本帖最後由 張宸翔 於 2020-1-31 15:32 編輯
  1. import java.util.Scanner;

  2. public class Ch44 {

  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

本帖最後由 何蕙妘 於 2020-1-31 15:37 編輯
  1. import java.util.Scanner;
  2. public class ch44
  3. {
  4.         public static void main(String args[])
  5.     {
  6.                 Scanner s=new Scanner(System.in);
  7.                 int a;
  8.                 System.out.println("<有趣問答>");
  9.                 System.out.println("請問豬有幾隻腳?(1)一隻(2)兩隻(3)三隻(4)四隻");
  10.                 System.out.print("請回答: ");
  11.                 a=s.nextInt();
  12.                 switch (a) {
  13.                 case 1:
  14.                         System.out.print("你的豬是哪個世界的?");
  15.                         break;
  16.                 case 2:
  17.                         System.out.print("是你?");
  18.                         break;
  19.                 case 3:
  20.                         System.out.print("你有沒有送牠去醫院?");
  21.                         break;
  22.                 case 4:
  23.                         System.out.print("基本常識");
  24.                         break;       
  25.                 default:
  26.                         System.out.print("要記得去看眼科");
  27.                         break;
  28.                 }
  29.     }
  30. }
複製代碼

TOP

  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("Q:請問臺灣首都位於?(1)台南(2)台北(3)南京(4)北京 ");
  7.         System.out.print("A: ");
  8.         answer=s.nextInt();
  9.         switch(answer)
  10.         {
  11.             case 1:System.out.print("那是以前~");
  12.             break;
  13.             case 2:System.out.print("還沒確立 O3O");
  14.             break;
  15.             case 3:System.out.print("答對!憲法還沒修正");
  16.             break;
  17.             case 4:System.out.print("選這也太扯了...");
  18.             break;
  19.             
  20.         }
  21.         
  22.         }

  23. }
複製代碼

TOP

  1. import java.util.Scanner;


  2. public class Ch11 {

  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.                 case 1:
  12.                         System.out.println("用跳的嗎?");
  13.                         break;
  14.                 case 2:
  15.                         System.out.println("沒吃過豬肉也看過豬走路!");
  16.                         break;
  17.                 case 3:
  18.                         System.out.println("你是豬啊?");
  19.                         break;
  20.                 case 4:
  21.                         System.out.println("答對了!");
  22.                         break;

  23.                 default:
  24.                         System.out.println("輸入錯誤");
  25.                 }
  26.         }

  27. }
複製代碼

TOP

本帖最後由 楊秉樺 於 2020-1-31 15:42 編輯

[code]import java.util.Scanner;
public class Ch46 {

        public static void main(String[] args) {
                Scanner s=new Scanner(System.in);
                int ans;
                System.out.println("<小米的腦殘問答>");
                System.out.println("請問豬有幾隻腳? <1>一隻<2>二隻<3>三隻<4>四隻");
                System.out.print("請作答: ");
                ans=s.nextInt();
                switch (ans)
                {
                case 1:
                        System.out.println("用跳的嗎?");
                        break;
                case 2:
                        System.out.println("沒吃過豬肉也看過豬走路!");
                        break;
                case 3:
                        System.out.println("你是豬啊?");
                        break;
                case 4:
                        System.out.println("答對了!");
                        break;
                default :
                        System.out.println("輸入錯誤");
                }
        }

}[code]

TOP

  1. package pig;

  2. import java.util.Scanner;

  3. public class pig {

  4.         public static void main(String[] args) {
  5.         Scanner s=new Scanner(System.in);
  6.         int answer;
  7.     System.out.println("北七大問答");
  8.         while(true)
  9.         {
  10.                 System.out.println("請問豬有幾隻腳? (1)1隻(2)2隻(3)3隻(4)4隻");       
  11.                 System.out.print("請作答: ");
  12.                 answer=s.nextInt();
  13.                 switch(answer)
  14.                 {
  15.                                 case 1:
  16.                                       System.out.println("太長了是嗎?");
  17.                                       break;
  18.                                 case 2:
  19.                                           System.out.println("你很愛照鏡子ㄟ");
  20.                                           break;
  21.                             case 3:
  22.                                       System.out.println("原來你深藏不露");
  23.                                           break;
  24.                             case 4:
  25.                                           System.out.println("正確");
  26.                                           break;
  27.                                 default:
  28.                                       System.out.println("輸入錯誤");
  29.                 }      
  30.         }
  31.         }

  32. }
複製代碼

TOP

  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. }
複製代碼

TOP

  1. import java.util.Scanner;

  2. public class Ch44 {

  3.         public static void main(String[] args) {
  4.                 int ans;
  5.                 Scanner s=new Scanner(System.in);
  6.                 System.out.println("<簡單的小學知識題>");
  7.                 System.out.println("請問過年到紅包為發生什麼事?(1)自己存起來 (2)跟媽媽五五分(3)被媽媽收走,長大再還你 (4)被媽媽收走,長大了還是不會還你 ");
  8.                 while(true)
  9.                 {
  10.                         System.out.println("請回答:");

  11.                         ans=s.nextInt();
  12.                         switch(ans)
  13.                         {
  14.                         case 1:
  15.                                 System.out.println("想得美");
  16.                                 break;
  17.                         case 2:
  18.                                 System.out.println("不是五五分,是十零分");
  19.                                 break;
  20.                         case 3:
  21.                                 System.out.println("從小聽到大還聽不膩嗎");
  22.                                 break;
  23.                         case 4:
  24.                                 System.out.println("唉,這強盜永遠是合法的啊");
  25.                                 break;
  26.                         default:
  27.                                 System.out.println("沒有這個答案不要再逃避了");
  28.                         }




  29.                 }

  30.         }

  31. }
複製代碼

TOP

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



  28.                 }


  29.         }
  30. }
複製代碼

TOP

  1. import java.util.Scanner;
  2. public class Ch13 {
  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("下列Youtuber中,你最喜歡哪位?");
  8.         System.out.println("(1) 菜頭貴 (2) 小吳 (3) 館長 (4) 小孩子才做決定,我全都要!!!");
  9.         System.out.println("請選擇: ");
  10.         answer=s.nextInt();
  11.         switch(answer)
  12.         {
  13.             case 1:
  14.                     System.out.println("要記得看一片少一片喔~ 菜頭貴上小學就要停更了");
  15.                     break;
  16.             case 2:
  17.                     System.out.println("要互相傷害了嗎?");
  18.                     break;
  19.             case 3:
  20.                     System.out.println("那你有搶到三公分雞排嗎?");
  21.                     break;
  22.             case 4:
  23.                     System.out.println("嗨~青少年~");
  24.                     break;
  25.             default:
  26.                     System.out.println("可以認真選嗎?");
  27.         }
  28.         
  29.         }

  30. }
複製代碼

TOP

  1. import java.util.Scanner;
  2. public class Ch43 {
  3.         public static void main(String[] args) {
  4.                 Scanner s=new Scanner(System.in);
  5.                 int qwq;
  6.                 System.out.println("<翰翰的機智問答~>");
  7.                 while(true) {
  8.                         System.out.println("請問 蜜蜂+蝴蝶 的英文是? (1)Beterfly(2)beterfly(3)Betterfly(4)Beeterfly");
  9.                         System.out.println("請回答~:");
  10.                         qwq=s.nextInt();
  11.                         switch(qwq)
  12.                         {
  13.                         case 1:
  14.                                 System.out.println("你的英文程度 就像水溝蓋被偷走後的臭水溝 一無四處");
  15.                                 break;
  16.                         case 2:
  17.                                 System.out.println("連名字要大寫都不知道  你國小的英文老師是不是聽到你講話就拿糖果丟你的頭");
  18.                                 break;
  19.                         case 3:
  20.                                 System.out.println("有沒有一點情懷 都說了是蜜蜂加蝴蝶 有可能只有把u換掉而已嗎?");
  21.                                 break;
  22.                         case 4:
  23.                                 System.out.println("等我APCS過了 請你吃苦苦的巧克力");
  24.                                 break;
  25.                         default:
  26.                                 System.out.println("看不懂題目? 連國小不去學校在家自學都被規定要英文了 ");
  27.                         }
  28.                 }
  29.         }
  30. }
複製代碼

TOP

  1. import java.util.Scanner;


  2. public class Ch14 {

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

  32. }
複製代碼

TOP

返回列表