返回列表 發帖
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int option;
    re:
    cout<<"請問豬有幾隻腳?(1)一隻(2)二隻(3)三隻(4)四隻"<<endl;
    cin>>option;
    switch(option){
        case 1:
            cout<<"用跳的嗎?"<<endl;
            break;
        case 2:
            cout<<"沒吃過豬肉也看過豬走路!"<<endl;
            break;
        case 3:
            cout<<"你是豬啊?"<<endl;
            break;
        case 4:
            cout<<"正確"<<endl;
            break;
        default:
            cout<<"輸入錯誤"<<endl;
            break;

    }
    goto re;
    system("pause");
    return 0;
}

TOP

返回列表