返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. re:
  7.     char x;
  8.     cout<<"豬有幾隻腳 a.1  b.2  c.3  d.4 ";
  9.     cin>>x;
  10.     switch(x)
  11.    {
  12.    case 'a':
  13.    case 'A':
  14.     cout<<"用跳的嗎?"<<endl;
  15.     break;
  16.     case 'b':
  17.         case 'B':
  18.     cout<<" 沒吃過豬肉也看過豬走路!"<<endl;
  19.     break;
  20.    case 'c':
  21.        case 'C':
  22.     cout<<"你是豬啊?"<<endl;
  23.     break;
  24.     case 'd':
  25.         case 'D':
  26.     cout<<"yes"<<endl;
  27.     break;
  28.     default:
  29.     cout<<"error"<<endl;
  30.     break;
  31.    }
  32.      cout<<""<<endl;
  33.      goto re;

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

TOP

返回列表