返回列表 發帖
本帖最後由 盧玄皓 於 2022-12-30 19:46 編輯
  1. #include<cstdlib>
  2. #include<iostream>
  3. using namespace std;
  4. int main()
  5. {

  6.     char score;
  7.     cout<<"<小米的腦殘問題>"<<endl;
  8.     cout<<"豬有幾隻腳? a.一隻b.兩隻c.三隻d.四點五隻e.以上皆非"<<endl;
  9.     cout<<"請作答: ";
  10.     cin>>score;
  11.    switch(score
  12.    )
  13.    {
  14.     case 'a':

  15.     cout<<"你有問題嗎?";
  16.     break;
  17.    
  18.    
  19.      case 'b':
  20.    
  21.      cout<<"你在哈囉!";
  22.      break;

  23.    
  24.     case 'c':      
  25.     cout<<"ㄜ...?"<<endl;
  26.     break;
  27.     case 'd':      
  28.     cout<<"四點五隻?...你看清楚!"<<endl;
  29.     break;
  30.     case 'e':      
  31.     cout<<"以上皆非!  正確"<<endl;
  32.     break;
  33.    
  34.     default:
  35.        cout<<"輸入錯誤"<<endl;
  36.        }     
  37.     system("pause");
  38.     return 0;   
  39. }
複製代碼

TOP

返回列表