返回列表 發帖
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     char d;
  6.     cout<<"<Bob's nonsense question>"<<endl;
  7.     cout<<"How many legs does a big have? (A)One (B)Three (C)Four (D)Two"<<endl;
  8.     cout<<"Please enter here: ";
  9.     cin>>d;
  10.     switch(d)
  11.     {
  12.              case 'a':
  13.              case 'A':
  14.                   cout<<"Are you out of your mind?";
  15.                   break;
  16.              case 'b':
  17.              case 'B':
  18.               cout<<"What sort of nonsense is this?";
  19.                   break;
  20.               case 'c':
  21.                    case 'C':
  22.               
  23.                cout<<"Exellent job";
  24.                   break;
  25.                case 'd':
  26.                case 'D':
  27.                 cout<<"Not exactly...keep trying";
  28.                   break;
  29.                
  30.                 default:
  31.                         cout<<"oops, information out of reach";
  32.                         }
  33.                 cout<<endl;
  34.                 system("pause");
  35.                 return 0;
  36. }
  37.                
複製代碼

TOP

返回列表