返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char answer;
  7.     cout<<"<Smosh's stupid question>"<<endl;
  8.     cout<<"2個半小時是幾分鐘:(a)120分(b)60分(c)55分(d)59分"<< endl;
  9.     cout<<"Please answer:"<<endl;
  10.     cin>>answer;
  11.     switch(answer)
  12.     {
  13.     case 'a':
  14.     case 'A':     
  15.       cout<<"wrong answer!"<<endl;
  16.       break;
  17.     case 'b':
  18.     case 'B'     
  19.       cout<<"Bingo!"<<endl;
  20.       break;
  21.     case 'c':
  22.     case 'C':     
  23.       cout<<"wrong answer!"<<endl;
  24.       break;
  25.     case 'd':
  26.     case 'D' :   
  27.       cout<<"wrong answer!"<<endl;
  28.       break;
  29.     default:
  30.       cout<<"you really are a dickhole!"<<endl;        
  31.                   
  32.     }
  33.     system("pause");
  34.     return 0;

  35.    
  36.    
  37.    
  38. }
複製代碼

TOP

返回列表