返回列表 發帖
本帖最後由 羅紹齊 於 2022-9-3 13:57 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5.     int option;
  6.     cout<<"小米的腦殘問題"<<endl;
  7.     cout<<"豬有幾隻腳?"<<endl;
  8.     cout<<"1(1隻)"<<endl;
  9.     cout<<"2(2隻)"<<endl;
  10.     cout<<"3(3隻)"<<endl;
  11.     cout<<"4(4隻)"<<endl;
  12.     cin>>option;
  13.     switch(option){
  14.                    case 1:
  15.                         cout<<"傻眼"<<endl;
  16.                         break;
  17.                         case 2:
  18.                              cout<<"我是問豬不是問人!"<<endl;
  19.                              break;
  20.                              case 3:
  21.                                   cout<<"另一隻腳是被你吃了吧!"<<endl;
  22.                                   break;
  23.                                   case 4:
  24.                                        cout<<"Bingo!"<<endl;
  25.                                        break;
  26.                                        default:
  27.                                                cout<<"好阿你就繼續搞事情阿!"<<endl;
  28.                                        }
  29.     system("pause");
  30.     return 0;
  31. }
複製代碼

TOP

返回列表