- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- re:
- int option;
- cout<<"<小米的腦殘問題>"<<endl;
- cout<<"請問豬有幾隻腳? (1)一隻(2)二隻(3)三隻(4)四隻"<<endl;
- cout<<"請作答:";
- cin>>option;
- switch(option)
- {
- case 1:
- cout<<"用跳的嗎?"<<endl;
- break;
- case 2:
- cout<<"沒吃過豬肉也看過豬走路!"<<endl;
- break;
- case 3:
- cout<<"你是豬啊?"<<endl;
- break;
- case 4:
- cout<<"答對了!"<<endl;
- break;
- default:
- cout<<"輸入錯誤!"<<endl;
- }
- cout<<endl;
- goto re;
- system("pause");
- return 0;
- }
複製代碼 |