返回列表 發帖
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int answer;
    cout<<"<Smosh's stupid question>"<<endl;
    cout<<"2個半小時是幾分鐘1)120分(2)60分(3)55分(4)59分"<< endl;
    cout<<"lease answer:"<<endl;
    cin>>answer;
    if(answer==1)
    {
   
      cout<<"wrong answer!"<<endl;
      }if(answer==2)
    {
      cout<<"Bingo!"<<endl;
    }if(answer==3)   
    {   
      cout<<"wrong answer!"<<endl;
    }if(answer==4)
     {   
      cout<<"wrong answer!"<<endl;
      }else
    {
      cout<<"you really are a dickhole!"<<endl;        
      }              
   
    system("pause");
    return 0;

   
   
   
}

TOP

本帖最後由 張彥承 於 2013-10-26 16:35 編輯
  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.     if(answer==1)
  12.     {
  13.    
  14.       cout<<"wrong answer!"<<endl;
  15.       } else  if(answer==2)
  16.     {
  17.       cout<<"Bingo!"<<endl;
  18.     }else  if(answer==3)   
  19.     {   
  20.       cout<<"wrong answer!"<<endl;
  21.     }else  if(answer==4)
  22.      {   
  23.       cout<<"wrong answer!"<<endl;
  24.       }else
  25.     {
  26.       cout<<"you really are a dickhole!"<<endl;        
  27.       }              
  28.    
  29.     system("pause");
  30.     return 0;

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

TOP

返回列表