- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main(){
- char choice;
- cout<<"問個小問題:"<<endl;
- cout<<"我的腦在哪?(a 冰箱,b 地下室,c 柬埔寨,d 你家)"<<endl;
- cout<<"請作答:" ;
- cin>>choice;
- switch(choice){
- case 'a':
- case 'A':
- cout<<"沒看到欸..."<<endl;
- break;
- case 'b':
- case 'B':
- cout<<"我沒有手電筒!"<<endl;
- break;
- case 'c':
- case 'C':
- cout<<"蛤?哪裡?"<<endl;
- break;
- case 'd':
- case 'D':
- cout<<"..."<<endl;
- break;
- default:
- cout<<"你要跟我一起找嗎? "<<endl;
- }
- system ("pause");
- return 0;
- }
複製代碼 |