返回列表 發帖
本帖最後由 洪藜芸 於 2019-12-14 11:04 編輯

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int a=1;
    re:
    int h[4]={0,0,0,0};
    string w[4]={"◆","★","▲","●"};
    int wi;
    srand(time(NULL));
    cout<<"賽馬場 第"<<a<<"局"<<endl;
    cout<<"-------------------------------------------------------------------------|終點"<<endl;
    cout<<"◆"<<endl;
    cout<<"★"<<endl;
    cout<<"▲"<<endl;
    cout<<"●"<<endl;
    system("pause");
    while(true)
    {
        cout<<"比賽進行中"<<endl;
        cout<<"-------------------------------------------------------------------------|終點"<<endl;
        int r=rand()%4;
        h[r]++;
        for(int i=1;i<=h[0];i++)
        {
            cout<<" ";
        }
        cout<<"◆"<<endl;
        for(int i=1;i<=h[1];i++)
        {
            cout<<" ";
        }
        cout<<"★"<<endl;
        for(int i=1;i<=h[2];i++)
        {
            cout<<" ";
        }
        cout<<"▲"<<endl;
        for(int i=1;i<=h[3];i++)
        {
            cout<<" ";
        }
        cout<<"●"<<endl;
        if(h[r]==72)
        {
            wi=r;
            break;
        }
        system("cls");
    }
    system("cls");
    cout<<"比賽結束,由"<<w[wi]<<"獲勝"<<endl;
    cout<<"-------------------------------------------------------------------------|終點"<<endl;
    for(int i=1;i<=h[0];i++)
        {
            cout<<" ";
        }
        cout<<"◆"<<endl;
    for(int i=1;i<=h[1];i++)
        {
            cout<<" ";
        }
        cout<<"★"<<endl;
    for(int i=1;i<=h[2];i++)
        {
            cout<<" ";
        }
        cout<<"▲"<<endl;
    for(int i=1;i<=h[3];i++)
        {
            cout<<" ";
        }
        cout<<"●"<<endl;
    a++;
    system("pause");
    system("cls");
    goto re;
    return 0;
}

TOP

返回列表