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

  31.    
  32.    
  33.    
  34. }
複製代碼

TOP

返回列表