返回列表 發帖
  1. #include<cstdlib>
  2. #include<iostream>
  3. using namespace std;
  4. int main()
  5. {
  6.     char ans;   
  7.     cout<<"<腦殘問答>"<<endl;
  8.     cout<<"請問雞有幾隻腳? (A)一隻 (B)兩隻 (C)三隻 (D)四隻"<<endl;
  9.     cout<<"A: ";
  10.     cin>>ans;
  11.     switch(ans)
  12. {
  13.             case 'a':
  14.             case 'A':
  15.                 cout<<"用跳的嗎?";
  16.         break;
  17.                 case 'b':
  18.         case 'B':
  19.         cout<<"沒吃過也看過!";
  20.         break;
  21.                 case 'c':
  22.         case 'C':
  23.         cout<<"多一隻炸雞腿!";
  24.         break;
  25.                 case 'd':
  26.         case 'D':
  27.         cout<<"correct!";
  28.         break;   
  29.         default:
  30.         cout<<"輸入錯誤!";          
  31. }

  32.     cout<<endl;   
  33.     system("pause");
  34.     return 0;   
  35. }
複製代碼

TOP

返回列表