返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int balance=0, total=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.     }else if(option==2)
  28.     {
  29.      cout<<"下注:";
  30.      cin>>bet;
  31.      if (bet>money)
  32.      {
  33.             cout<<"可用餘額不足!請先買入"<<endl;
  34.            system("pause");
  35.            goto start;
  36.      }else
  37.      {
  38.                  cout<<"(1)◆ (2)★ (3)▲ (4)●請選擇: "<<endl;
  39.                  cin>>option;
  40.                  
  41.      }
  42.     }else if(option==3)
  43.     {
  44.        goto end;
  45.     }

  46.    
  47.     system("pause");
  48.     while (true)
  49.     {
  50.           int r=rand()%4;
  51.           space[r]++;
  52.           if(space[r]==74)
  53.                break;
  54.           cout<<"比賽進行中"<<endl;
  55.           cout<<"--------------------------------------------------------------------------| 終點"<<endl;
  56.              for(int i=0;i<=space[0];i++)
  57.              {
  58.                   cout<<" ";
  59.              }
  60.              cout<<"◆"<<endl;
  61.              for(int j=0;j<=space[1]; j++)
  62.              {
  63.                   cout<<" ";
  64.              }
  65.              cout<<"★"<<endl;
  66.              for(int j=0;j<=space[2];j++)
  67.              {
  68.                   cout<<" ";
  69.              }
  70.              cout<<"▲"<<endl;
  71.              for(int j=0;j<=space[3];j++)
  72.              {     
  73.                    cout<<" ";
  74.              }
  75.              cout<<"●"<<endl;
  76.              system("cls");
  77.      }
  78.          cout<<"比賽結束! 由 ";
  79.     if(space[0]==74)
  80.     {
  81.         cout<<"◆";
  82.         winer =1;
  83.     }
  84.     else if(space[1]==74)
  85.     {
  86.         cout<<"★";
  87.         winer =2;
  88.     }
  89.     else if(space[2]==74)
  90.     {
  91.         cout<<"▲";
  92.         winer =3;
  93.     }
  94.     else
  95.     {
  96.         cout<<"●";
  97.         winer =4;
  98.     }
  99.     cout<<" 先到達終點!"<<endl;

  100.            cout<<"比賽結束"<<endl;
  101.           cout<<"--------------------------------------------------------------------------| 終點"<<endl;
  102.              for(int i=0;i<=space[0];i++)
  103.              {
  104.                   cout<<" ";
  105.              }
  106.              cout<<"◆"<<endl;
  107.              for(int j=0;j<=space[1]; j++)
  108.              {
  109.                   cout<<" ";
  110.              }
  111.              cout<<"★"<<endl;
  112.              for(int j=0;j<=space[2];j++)
  113.              {
  114.                   cout<<" ";
  115.              }
  116.              cout<<"▲"<<endl;
  117.              for(int j=0;j<=space[3];j++)
  118.              {     
  119.                    cout<<" ";
  120.              }
  121.              cout<<"●"<<endl;
  122.             
  123.      if (option==winer)
  124.         {
  125.               balance = balance+ bet*3;
  126.               total = total+ bet*3;   
  127.         }
  128.      else
  129.      {
  130.               balance = balance- bet;
  131.               total = total- bet;
  132.      }
  133.      
  134.      end:
  135.       if(total==0)
  136.     {
  137.         cout<<"沒輸沒贏!"<<endl;
  138.     }else if(total>0)
  139.     {
  140.         cout<<"恭喜你! 這次總共贏了"<<total<<"元!"<<endl;  
  141.     }else
  142.     {
  143.         cout<<"不好意思! 你損失了"<<total<<"元!"<<endl;  
  144.     }  
  145.              system("pause");
  146.              goto start;
  147.     system("pause");
  148.     return 0;   
  149. }
複製代碼

TOP

返回列表