返回列表 發帖

switch 判斷式

本帖最後由 許婷芳 於 2019-9-7 13:32 編輯



利用 switch 判斷式,設計一有趣的急智問答選擇題。
1.  "怎麼可能? 用跳的嗎?!"
2.  "沒吃過豬肉也看過豬走路!"
3.  "你是豬啊?"
4.  "答對了!"

本帖隱藏的內容需要回復才可以瀏覽
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

本帖最後由 湯郡一 於 2019-9-7 14:12 編輯
  1. import java.io.Console;
  2. public class ch01;
  3. {
  4.   public.static void main(String args[])
  5.   {
  6.   Console c=System.Console();
  7.   int ans;
  8.   System.out.println("豬有幾隻腳(1)一隻(2)兩隻(3)三隻(4)四隻");
  9.   System.out.print("作答: ");
  10.   ans=Integer.parseInt(c.readLine());
  11.   switch(ans)
  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 king{
  3.      public static void main(String args[])
  4.      {

  5.        Console c=System.console();
  6.         int ans;
  7.         System.out.print("雞有幾隻腳");
  8.         System.out.println("(1)1隻 (2)3隻 (3)2隻 (4)4隻");
  9.         ans=Integer.parseInt(c.readLine());

  10.         switch(ans)
  11.         {
  12.         case 1:

  13.           System.out.print("錯誤");
  14.           break;

  15.         case 2:

  16.           System.out.print("錯誤");
  17.           break;

  18.         case 3:

  19.           System.out.print("正確");
  20.           break;

  21.         case 4:

  22.           System.out.print("錯誤");
  23.           break;

  24.         default:

  25.           System.out.print("輸入錯誤");

  26.         }
  27.      }
  28. }
複製代碼

TOP

本帖最後由 陳柏銓 於 2019-9-7 14:05 編輯
  1. import java.io.Console;
  2. public class C02 {

  3.         public static void main(String[] args) {
  4.                 int a;
  5.                 Console c=System.console();
  6.                 System.out.println("豬有幾隻腳? (1)一隻   (2)兩隻   (3)三隻   (4)四隻");
  7.                 a=Integer.parseInt(c.readLine("作答: "));
  8.                 switch(a)
  9.                 {
  10.                 case 1:
  11.                 System.out.println("怎麼可能? 用跳的嗎?!");
  12.                 break;
  13.                 case 2:
  14.                 System.out.println("沒吃過豬肉也看過豬走路!");
  15.                 break;
  16.                 case 3:
  17.                 System.out.println("你是豬啊?");
  18.                 break;
  19.                 case 4:
  20.                 System.out.println("答對了!");
  21.                 break;
  22.                 default:
  23.                 System.out.println("輸入錯誤");
  24.                 }
  25.         }

  26. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class ch092
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         Console c=System.console();
  7.         int score;
  8.         System.out.print("豬有幾隻腳??:");
  9.         score=Integer.parseInt(c.readLine());

  10.         switch(score)
  11.         {
  12.            case 1:
  13.           System.out.print("1隻");
  14.            break;
  15.            case 2:
  16.           System.out.print("2隻");
  17.            break;
  18.            case 3:
  19.           System.out.print("3隻");
  20.           break;

  21.            case 4:
  22.           System.out.print("4隻");
  23.            break;
  24.            default:
  25.           System.out.print("錯誤!!!");

  26.          }
  27.    }
  28. }
複製代碼

TOP

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

返回列表