返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5.     char choice;
  6.     cout<<"問個小問題:"<<endl;
  7.     cout<<"我的腦在哪?(a 冰箱,b 地下室,c 柬埔寨,d 你家)"<<endl;
  8.     cout<<"請作答:" ;
  9.     cin>>choice;
  10.     switch(choice){
  11.     case 'a':
  12.     case 'A':
  13.     cout<<"沒看到欸..."<<endl;
  14.     break;
  15.     case 'b':
  16.     case 'B':
  17.     cout<<"我沒有手電筒!"<<endl;
  18.     break;
  19.     case 'c':
  20.     case 'C':
  21.     cout<<"蛤?哪裡?"<<endl;
  22.     break;
  23.     case 'd':
  24.     case 'D':
  25.     cout<<"..."<<endl;
  26.     break;
  27.     default:
  28.     cout<<"你要跟我一起找嗎? "<<endl;
  29.     }
  30.     system ("pause");
  31.     return 0;
  32. }
複製代碼
Attention Seeker </3

TOP

返回列表