返回列表 發帖
  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;
  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;   //balance=balance+buyin
  26.         goto start;
  27.     }
  28.     system("pause");
  29.     while (true)
  30.     {
  31.           int r=rand()%4;
  32.           space[r]++;
  33.           if(space[r]==74)
  34.                break;
  35.           cout<<"比賽進行中"<<endl;
  36.           cout<<"--------------------------------------------------------------------------| 終點"<<endl;
  37.              for(int i=0;i<=space[0];i++)
  38.              {
  39.                   cout<<" ";
  40.              }
  41.              cout<<"◆"<<endl;
  42.              for(int j=0;j<=space[1]; j++)
  43.              {
  44.                   cout<<" ";
  45.              }
  46.              cout<<"★"<<endl;
  47.              for(int j=0;j<=space[2];j++)
  48.              {
  49.                   cout<<" ";
  50.              }
  51.              cout<<"▲"<<endl;
  52.              for(int j=0;j<=space[3];j++)
  53.              {     
  54.                    cout<<" ";
  55.              }
  56.              cout<<"●"<<endl;
  57.              system("cls");
  58.      }
  59.          cout<<"比賽結束! 由 ";
  60.     if(space[0]==74)
  61.         cout<<"◆";
  62.     else if(space[1]==74)
  63.         cout<<"★";
  64.     else if(space[2]==74)
  65.         cout<<"▲";
  66.     else
  67.         cout<<"●";
  68.     cout<<" 先到達終點!"<<endl;

  69.            cout<<"比賽結束"<<endl;
  70.           cout<<"--------------------------------------------------------------------------| 終點"<<endl;
  71.              for(int i=0;i<=space[0];i++)
  72.              {
  73.                   cout<<" ";
  74.              }
  75.              cout<<"◆"<<endl;
  76.              for(int j=0;j<=space[1]; j++)
  77.              {
  78.                   cout<<" ";
  79.              }
  80.              cout<<"★"<<endl;
  81.              for(int j=0;j<=space[2];j++)
  82.              {
  83.                   cout<<" ";
  84.              }
  85.              cout<<"▲"<<endl;
  86.              for(int j=0;j<=space[3];j++)
  87.              {     
  88.                    cout<<" ";
  89.              }
  90.              cout<<"●"<<endl;
  91.              system("pause");
  92.              goto start;
  93.     system("pause");
  94.     return 0;   
  95. }
複製代碼

TOP

返回列表