- #include <iostream>
- using namespace std;
- int main()
- {
- char d;
- cout<<"<Bob's nonsense question>"<<endl;
- cout<<"How many legs does a big have? (A)One (B)Three (C)Four (D)Two"<<endl;
- cout<<"Please enter here: ";
- cin>>d;
- switch(d)
- {
- case 'a':
- case 'A':
- cout<<"Are you out of your mind?";
- break;
- case 'b':
- case 'B':
- cout<<"What sort of nonsense is this?";
- break;
- case 'c':
- case 'C':
-
- cout<<"Exellent job";
- break;
- case 'd':
- case 'D':
- cout<<"Not exactly...keep trying";
- break;
-
- default:
- cout<<"oops, information out of reach";
- }
- cout<<endl;
- system("pause");
- return 0;
- }
-
複製代碼 |