本帖最後由 盧玄皓 於 2022-12-30 19:46 編輯
- #include<cstdlib>
- #include<iostream>
- using namespace std;
- int main()
- {
- char score;
- cout<<"<小米的腦殘問題>"<<endl;
- cout<<"豬有幾隻腳? a.一隻b.兩隻c.三隻d.四點五隻e.以上皆非"<<endl;
- cout<<"請作答: ";
- cin>>score;
- switch(score
- )
- {
- case 'a':
- cout<<"你有問題嗎?";
- break;
-
-
- case 'b':
-
- cout<<"你在哈囉!";
- break;
-
- case 'c':
- cout<<"ㄜ...?"<<endl;
- break;
- case 'd':
- cout<<"四點五隻?...你看清楚!"<<endl;
- break;
- case 'e':
- cout<<"以上皆非! 正確"<<endl;
- break;
-
- default:
- cout<<"輸入錯誤"<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |