Board logo

標題: switch 判斷式 [打印本頁]

作者: tonyh    時間: 2019-8-5 09:14     標題: 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. }
複製代碼

作者: 許育慈    時間: 2019-8-5 09:41

本帖最後由 許育慈 於 2019-8-5 09:44 編輯
  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 option;
  6.                 System.out.println("<腦殘問答>");
  7.                 System.out.println("請問豬有幾隻腳? (1)一隻 (2)兩隻 (3)三隻 (4)四隻 ");
  8.                 System.out.print("請作答:");
  9.                 option=s.nextInt();
  10.                 switch(option){
  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. }
複製代碼

作者: 張郁庭    時間: 2019-8-5 09:41

  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)1隻 (2)2隻 (3)3隻 (4)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. }
複製代碼

作者: 黃永恩    時間: 2019-8-5 09:42

  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 option;
  6.                 System.out.println("<小米的腦殘問答>");
  7.                 System.out.println("請問豬有幾隻腳? <1>一隻<2>兩隻<3>三隻<4>四隻");
  8.                 System.out.print("請作答: ");
  9.                 option=s.nextInt();
  10.                 switch(option)
  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. }
複製代碼

作者: 莊鈞程    時間: 2019-8-5 09:43

本帖最後由 莊鈞程 於 2019-8-5 09:45 編輯
  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.                 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.                             break;
  26.             }
  27.         }
  28. }
複製代碼

作者: 潘憶承    時間: 2019-8-5 09:43

  1. import java.util.Scanner;
  2. public class Ch01
  3. {
  4.         public static void main(String[] args)
  5.         {
  6.                 Scanner s=new Scanner(System.in);
  7.                 int option;
  8.                 System.out.println("<小米腦殘問答>");
  9.                 System.out.println("請問豬有幾隻腳?(1)一隻(2)兩隻(3)三隻(4)四隻");
  10.                 System.out.println("請回答: ");
  11.                 option=s.nextInt();
  12.                 switch(option)
  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. }
複製代碼

作者: 許育禎    時間: 2019-8-5 09:45

  1. import java.util.Scanner;


  2. public class CH09 {
  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.print("請作答:");
  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("你是豬啊?");
複製代碼

作者: 黃芊嬡    時間: 2019-8-5 09:45

  1. import java.util.Scanner;

  2. import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter.DEFAULT;


  3. public class Ch10 {

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

作者: 余映均    時間: 2019-8-5 09:46

  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 option;
  6.                 System.out.println("<小米的腦殘作答>");
  7.                 System.out.println("請問豬有幾隻腳?<1>一隻<2>兩隻<3>三隻<4>四隻");
  8.                 System.out.print("請作答: ");
  9.                 option=s.nextInt();
  10.                 switch(option)
  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. }
複製代碼

作者: 蔡明蓉    時間: 2019-8-5 09:47

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

作者: 鄭宇崴    時間: 2019-8-5 09:48

本帖最後由 鄭宇崴 於 2019-8-5 09:49 編輯
  1. import java.util.Scanner;
  2. public class Ch10
  3. {
  4.     public static void main(String[] args)
  5. {
  6.         Scanner s=new Scanner(System.in);
  7.         int answer;
  8.         System.out.println("<小米腦包問答>");
  9.         System.out.println("請問豬有幾隻腳? (1)一隻(2)兩隻(3)三隻(4)四隻");
  10.         System.out.print("請回答: ");
  11.         answer=s.nextInt();
  12.         switch(answer)
  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. }
複製代碼

作者: 張書涵    時間: 2019-8-5 09:50

  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 input;
  6.                 System.out.println("<小米的腦殘問答>");
  7.                 System.out.println("請問豬有幾隻腳?  (1)一隻 (2)兩隻 (3)三隻 (4)四隻");
  8.         System.out.print("請作答: ");
  9.         input=s.nextInt();
  10.         switch(input)
  11.         {
  12.                 case 1:
  13.                         System.out.println("用跳的嗎?");
  14.                        
  15.                 case 2:
  16.                         System.out.println("沒吃過豬肉也看過豬走路!");
  17.                         break;
  18.                        
  19.                 case 3:
  20.                         System.out.println("你是豬阿?");
  21.                         break;
  22.                        
  23.                 case 4:
  24.                         System.out.println("答對了!");
  25.                         break;
  26.                        
  27.                 default:
  28.                         System.out.println("輸入錯誤!");
  29.         }
  30.         }
  31. }
複製代碼

作者: 葉俠愷    時間: 2019-8-5 09:50

  1. import java.util.Scanner;


  2. public class Ch10 {

  3.         public static void main(String[] args) {
  4.     int amswer;
  5.         Scanner s=new Scanner(        System.in);
  6.         while(true)
  7.         {System.out.println("問答");
  8.     System.out.println("請問豬有幾隻腳(1)一隻(2)兩隻(3)三隻(4)四隻?");

  9.        
  10.         amswer=s.nextInt();
  11.         switch (amswer)
  12.           {case 1:
  13.                   System.out.println("用跳的嗎?");
  14.                   break;
  15.           case 2:
  16.                   System.out.println("沒吃過豬肉也看過豬走路!");
  17.                   break;
  18.        
  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.        
  31.         }

  32. }
複製代碼

作者: 曾暘竣    時間: 2019-8-5 09:51

  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 option;
  6.         System.out.println("<腦包問題>");
  7.         System.out.println("你他媽給我說林北有幾隻腳?(1)10 (2)2 (3)5 (4)9");
  8.         System.out.println("再不說就18秒ㄍㄚˇㄋㄧ打趴: ");
  9.         option=s.nextInt();
  10.         switch(option)
  11.         {
  12.         case 1:
  13.                 System.out.println("北七逆?");
  14.                 break;
  15.         case 2:
  16.                 System.out.println("GOOD!");
  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. }
複製代碼

作者: 何育翔    時間: 2019-8-5 09:51

  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.print("請問豬有幾隻腳? (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. }
複製代碼

作者: 余奕廷    時間: 2019-8-5 10:12

  1. import java.util.Scanner;

  2. public class Ch02 {

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

作者: 張嘉栩    時間: 2019-8-5 10:15

import java.util.Scanner;
public class Ch10 {

        public static void main(String[] args) {
                Scanner s=new Scanner(System.in);
                int answer;
                System.out.println("<小米腦殘問答>");
                System.out.println("請問豬有幾隻腳? (1)一隻 (2)兩隻 (3)三隻 (4)四隻 ");
                System.out.print("請回答: ");
                answer=s.nextInt();
                switch(answer)
                {
                    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("輸入錯誤!");
                }        
        }
}




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2