- #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<<"Please answer:"<<endl;
- cin>>answer;
- switch(answer)
- {
- case 1:
- cout<<"wrong answer!"<<endl;
- break;
- case 2:
- cout<<"Bingo!"<<endl;
- break;
- case 3:
- cout<<"wrong answer!"<<endl;
- break;
- case 4:
- cout<<"wrong answer!"<<endl;
- break;
- default:
- cout<<"you really are a dickhole!"<<endl;
-
- }
- system("pause");
- return 0;
-
-
-
- }
複製代碼 |