返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int n=1, money=0;
  7.    re:
  8.    int a=0, b=0, c=0, d=0, r, option, buyin, bet, winner;
  9.    system("cls");
  10.    cout<<"+++好事成雙->賽馬場+++ 第"<<n<<"局"<<endl;
  11.    cout<<"-------------------------------------------|終點"<<endl;
  12.    cout<<"◆"<<endl;
  13.    cout<<"★"<<endl;
  14.    cout<<"▲"<<endl;
  15.    cout<<"●"<<endl;
  16.    cout<<endl;
  17.    cout<<"可用餘額:"<<money<<"元"<<endl<<endl;
  18.    cout<<"(1)買入 (2)下注 (3)離開  請選擇"<<endl;
  19.    cin>>option;
  20.    if(option==1)
  21.    {
  22.       cout<<"買入:"<<endl;
  23.       cin>>buyin;
  24.       money+=buyin;
  25.       goto re;
  26.    }
  27.    else if(option==2)
  28.    {
  29.       if(money==0)
  30.       {     
  31.          cout<<"可用餘額不足!請先買入!!"<<endl;
  32.          system("pause");
  33.          goto re;
  34.       }
  35.       cout<<"下注:";
  36.       cin>>bet;
  37.       if(bet>money)   
  38.      {
  39.       cout<<"可用餘額不足!請先買入!!"<<endl;
  40.       system("pause");
  41.       goto re;                        
  42.      }
  43.      else
  44.      {
  45.       cout<<"(1)◆(2)★(3)▲(4)● 請選擇:"<<endl;
  46.       cin>>option;
  47.       cout<<"比賽即將開始....."<<endl<<endl;
  48.       system("pause");
  49.      }
  50.    }
  51.    else if(option==3)
  52.    {
  53.       goto end;
  54.    }   
  55.    else
  56.    {
  57.       cout<<"輸入錯誤"<<endl;
  58.       system("pause");
  59.       goto re;
  60.    }
  61.    system("pause");
  62.    system("cls");
  63.    srand(time(NULL));
  64.    
  65.    while(a!=20 && b!=20 && c!=20 && d!=20)
  66.    {
  67.       cout<<"賽馬進行中..."<<endl;
  68.       cout<<"-------------------------------------------|終點"<<endl;
  69.         r = rand()%4+1;
  70.         if(r==1)
  71.            a++;
  72.         if(r==2)
  73.            b++;
  74.         if(r==3)
  75.            c++;
  76.         if(r==4)
  77.            d++;   
  78.       
  79.        for(int i=0;i<=a;i++)
  80.           cout<<"  ";
  81.        cout<<"◆"<<endl;
  82.        a++;
  83.        for(int i=0;i<=b;i++)
  84.           cout<<"  ";
  85.        cout<<"★"<<endl;
  86.        b++;
  87.        for(int i=0;i<=c;i++)
  88.           cout<<"  ";
  89.        cout<<"▲"<<endl;
  90.        c++;  
  91.        for(int i=0;i<=d;i++)
  92.           cout<<"  ";
  93.        cout<<"●"<<endl;
  94.        d++;
  95.        system("cls");
  96.       
  97.    }
  98.     cout<<"賽馬結束...!由 ";
  99.     if(a==20)
  100.        {
  101.           cout<<"◆";
  102.           winner = 1;
  103.        }
  104.     else if(b==20)
  105.        {
  106.           cout<<"★";
  107.           winner = 2;
  108.        }   
  109.     else if(c==20)
  110.        {
  111.           cout<<"▲";
  112.           winner = 3;
  113.        }
  114.     else
  115.        {
  116.           cout<<"●";
  117.           winner = 4;
  118.        }
  119.     cout<<"先抵達終點!"<<endl;
  120.     cout<<"-------------------------------------------|終點"<<endl;
  121.        for(int i=0;i<=a;i++)
  122.           cout<<"  ";
  123.        cout<<"◆"<<endl;
  124.        a++;
  125.        for(int i=0;i<=b;i++)
  126.           cout<<"  ";
  127.        cout<<"★"<<endl;
  128.        b++;
  129.        for(int i=0;i<=c;i++)
  130.           cout<<"  ";
  131.        cout<<"▲"<<endl;
  132.        c++;  
  133.        for(int i=0;i<=d;i++)
  134.           cout<<"  ";
  135.        cout<<"●"<<endl;
  136.        d++;
  137.        if(option==winner)
  138.        {
  139.            cout<<"贏了"<<bet*3<<"元!"<<endl;
  140.            money+=bet*3;                  
  141.        }else
  142.        {
  143.            cout<<"損失"<<bet<<"元!"<<endl;
  144.            money-=bet;
  145.        }
  146.        system("pause");
  147.        n++;
  148.        goto re;
  149.        end:
  150. system("pause");
  151. return 0;
  152. }
複製代碼

TOP

返回列表