- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main(){
- cout<<"<小米的腦殘問答>"<<endl;
- cout<<"請問豬有幾隻腳? (1)一隻 (2)兩隻 (3)三隻 (4)四隻"<<endl;
- cout<<"請作答: " <<endl;
- int choice;
- cin>>choice;
-
- switch(choice){
- case 1:
- cout<<"昏倒"<<endl;
- break;
- case 2:
- cout<<"豬變雞"<<endl;
- break;
- case 3:
- cout<<"腿斷了"<<endl;
- break;
- case 4:
- cout<<"好棒"<<endl;
- break;
-
- default:
- cout<<"輸入錯誤!"<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |