返回列表 發帖

[作業] switch 判斷式

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



參考回應
1. 用跳的嗎?
2. 沒吃過豬肉也看過豬走路!
3. 你是豬啊?
4. 答對了!
  1. import java.io.Console;
  2. public class Ch11
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Console c=System.console();
  7.          int opt;  //option
  8.          System.out.println("豬有幾隻腳? (1)一隻 (2)兩隻 (3)三隻 (4)四隻 ");
  9.          System.out.print("作答: ");
  10.          opt=Integer.parseInt(c.readLine());
  11.          switch(opt)
  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. }
複製代碼

  1. import java.io.Console;
  2. public class Ch13
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Console c=System.console();
  7.          int x;
  8.          System.out.println("豬有幾隻腳? (1)一隻 (2)兩隻 (3)三隻 (4)四隻 ");
  9.          System.out.print("作答: ");
  10.          x=Integer.parseInt(c.readLine());
  11.          switch(x)
  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. }
複製代碼

TOP

  1. import java.lang.System;
  2. import java.io.Console;
  3. public class Ch14
  4. {
  5.     public static void main(String args[])
  6.     {
  7.         Console c=System.console();
  8.         int opt=Integer.parseInt(c.readLine("豬有幾隻腳? (1)一隻 (2)兩隻 (3)三隻 (4)四隻 請作答:"));
  9.         switch(opt)
  10.         {
  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

  1. import java.io.Console;
  2. public class Ch11
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Console c=System.console();
  7.          int opt;  //option
  8.          System.out.println("豬有幾隻腳? (1)一隻 (2)兩隻 (3)三隻 (4)四隻 ");
  9.          System.out.print("作答: ");
  10.          opt=Integer.parseInt(c.readLine());
  11.          switch(opt)
  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. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class Ch11
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Console c=System.console();
  7.          int opt;
  8.          System.out.println("豬有幾隻腳? (1)一隻 (2)兩隻 (3)三隻 (4)四隻 ");
  9.          System.out.print("作答: ");
  10.          opt=Integer.parseInt(c.readLine());
  11.          switch(opt)
  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. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class Ch11
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Console c=System.console();
  7.          int opt;  //option
  8.          System.out.println("豬有幾隻腳? (1)一隻 (2)兩隻 (3)三隻 (4)四隻 ");
  9.          System.out.print("作答: ");
  10.          opt=Integer.parseInt(c.readLine());
  11.          switch(opt)
  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. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class Ch11
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Console c=System.console();
  7.          int opt;  //option
  8.          System.out.println("豬有幾隻腳? (1)一隻 (2)兩隻 (3)三隻 (4)四隻 ");
  9.          System.out.print("作答: ");
  10.          opt=Integer.parseInt(c.readLine());
  11.          switch(opt)
  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. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class Ch13
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Console c=System.console();
  7.          int opt;  //option
  8.          System.out.println("豬有幾隻腳? (1)一隻 (2)兩隻 (3)三隻 (4)四隻 ");
  9.          System.out.print("作答: ");
  10.          opt=Integer.parseInt(c.readLine());
  11.          switch(opt)
  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. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class Ch11
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Console c=System.console();
  7.          int opt;
  8.          System.out.println("豬有幾隻腳? (1)一隻 (2)兩隻 (3)三隻 (4)四隻 ");
  9.          System.out.print("作答: ");
  10.          opt=Integer.parseInt(c.readLine());
  11.          switch(opt)
  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. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class Ch11
  3. {
  4.     public static void main(String agrs[])
  5.     {
  6.          int ans;
  7.          Console c=System.console();
  8.          System.out.println("<問題>');
  9.          System.out.println("請問豬有幾隻腳?  (1)1 (2)2 (3)3 (4)4");
  10.          System.out.println("請作答: ");
  11.          opt=Integer.parseInt(c.readLine());
  12.          switch(opt)
  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.io.Console;
  2. public classCh08
  3. {
  4.      public static void main(String args[])
  5.      {
  6.          int ans;
  7.          Console c=System.console();
  8.          System.out.println("~史派克問答~");
  9.          System.out.println("請問史派克有幾根刺(1)0根(2)2根(3)46根(4)157根");
  10.          System.out.println("請作答:");
  11.          ans=Integer.parseInt(c.readLine());
  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.io.Console;
  2. public class Ch10
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Console c=System.console();
  7.          int opt;  //option
  8.          System.out.println("豬有幾隻腳? (1)一隻 (2)兩隻 (3)三隻 (4)四隻 ");
  9.          System.out.print("作答: ");
  10.          opt=Integer.parseInt(c.readLine());
  11.          switch(opt)
  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. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class Ch11
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Console c=System.console();
  7.          int opt;  //option
  8.          System.out.println("豬有幾隻腳? (1)一隻 (2)兩隻 (3)三隻 (4)四隻 ");
  9.          System.out.print("作答: ");
  10.          opt=Integer.parseInt(c.readLine());
  11.          switch(opt)
  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. }
複製代碼

TOP

返回列表