返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. re:
  7.     char x;
  8.     cout<<"小米的腦殘問答"<<endl;
  9.     cout<<"請問豬有幾隻腳(1)1隻(2)2隻(3)3隻(4)4隻"<<endl;
  10.     cout<<"請作答"<<endl;
  11.     cin>>x;
  12.     switch(x)
  13.     {
  14.     case 'A':
  15.     case 'a':
  16.         cout<<"用跳的嗎?"<<endl;
  17.         break;

  18.     case 'B':
  19.     case 'b':
  20.         cout<<"沒吃過豬肉也看過豬走路!"<<endl;
  21.         break;

  22.     case 'C':
  23.     case 'c':
  24.         cout<<"你是豬啊?"<<endl;
  25.         break;
  26.     case 'D':
  27.     case 'd':
  28.         cout<<"答對了!"<<endl;
  29.         break;

  30.     default:
  31.         cout<<"輸入錯誤"<<endl;


  32.     }
  33.     goto re;
  34.     system("pause");
  35.     return 0;
  36. }
複製代碼

TOP

返回列表