返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int balance=0;
  7.     start:
  8.     srand(time(NULL));
  9.     int space[]={0,0,0,0};
  10.     int option, money, winer, bet;
  11.     system("cls");
  12.     cout<<"賽馬場"<<endl;
  13.     cout<<"------------------------------------------------------------------------------| 終點"<<endl;
  14.     cout<<"◆"<<endl;
  15.     cout<<"★"<<endl;
  16.     cout<<"▲"<<endl;
  17.     cout<<"●"<<endl;
  18.     cout<<"可用餘額: "<<balance<<"元"<<endl<<endl;
  19.     cout<<"(1)買入  (2)下注  (3)離開  請選擇: ";
  20.     cin>>option;
  21.    
  22.     if (option==1)
  23.     {    cout<<"買入: ";
  24.         cin>>money;
  25.         balance+=money;
  26.         goto start;
  27.     }

  28.     cout<<"下注:";
  29.     cin>>bet;
  30.     if (bet>money)
  31.     {
  32.             cout<<"可用餘額不足!請先買入"<<endl;
  33.            system("pause");
  34.            goto start;
  35.            }else
  36.            {
  37.                  cout<<"(1)◆ (2)★ (3)▲ (4)●請選擇: "<<endl;
  38.                  cin>>option;
  39.                  
  40.            }
  41.     system("pause");
  42.     while (true)
  43.     {
  44.           int r=rand()%4;
  45.           space[r]++;
  46.           if(space[r]==74)
  47.                break;
  48.           cout<<"比賽進行中"<<endl;
  49.           cout<<"--------------------------------------------------------------------------| 終點"<<endl;
  50.              for(int i=0;i<=space[0];i++)
  51.              {
  52.                   cout<<" ";
  53.              }
  54.              cout<<"◆"<<endl;
  55.              for(int j=0;j<=space[1]; j++)
  56.              {
  57.                   cout<<" ";
  58.              }
  59.              cout<<"★"<<endl;
  60.              for(int j=0;j<=space[2];j++)
  61.              {
  62.                   cout<<" ";
  63.              }
  64.              cout<<"▲"<<endl;
  65.              for(int j=0;j<=space[3];j++)
  66.              {     
  67.                    cout<<" ";
  68.              }
  69.              cout<<"●"<<endl;
  70.              system("cls");
  71.      }
  72.          cout<<"比賽結束! 由 ";
  73.     if(space[0]==74)
  74.     {
  75.         cout<<"◆";
  76.         winer =1;
  77.     }
  78.     else if(space[1]==74)
  79.     {
  80.         cout<<"★";
  81.         winer =2;
  82.     }
  83.     else if(space[2]==74)
  84.     {
  85.         cout<<"▲";
  86.         winer =3;
  87.     }
  88.     else
  89.     {
  90.         cout<<"●";
  91.         winer =4;
  92.     }
  93.     cout<<" 先到達終點!"<<endl;

  94.            cout<<"比賽結束"<<endl;
  95.           cout<<"--------------------------------------------------------------------------| 終點"<<endl;
  96.              for(int i=0;i<=space[0];i++)
  97.              {
  98.                   cout<<" ";
  99.              }
  100.              cout<<"◆"<<endl;
  101.              for(int j=0;j<=space[1]; j++)
  102.              {
  103.                   cout<<" ";
  104.              }
  105.              cout<<"★"<<endl;
  106.              for(int j=0;j<=space[2];j++)
  107.              {
  108.                   cout<<" ";
  109.              }
  110.              cout<<"▲"<<endl;
  111.              for(int j=0;j<=space[3];j++)
  112.              {     
  113.                    cout<<" ";
  114.              }
  115.              cout<<"●"<<endl;
  116.             
  117.              if (option==winer)
  118.              {
  119.               balance = balance+ bet*3;
  120.              }
  121.              else
  122.              {
  123.               balance = balance- bet;
  124.              }
  125.              system("pause");
  126.              goto start;
  127.     system("pause");
  128.     return 0;   
  129. }
複製代碼

TOP

返回列表