返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.         int round=1;        
  8.     int balance=0;        
  9.     int option;        
  10.     int buy;
  11.    
  12.     re:
  13.     system("cls");
  14.     srand(time(NULL));
  15.    
  16.     int s[]={0,0,0,0};
  17.     string p[]={"◆","★","▲","●"};
  18.     int r=0;
  19.     cout<<"「好事成雙」賽馬場"<<"第"<<round<<"場"<<endl;
  20.     cout<<"--------------------------------------------------------------------------| 終點"<<endl;
  21.     for(int i=0; i<4; i++)
  22.         cout<<p[i]<<endl;
  23.         
  24.     cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;
  25.     cout<<"(1)儲值 (2)下注 (3)離開 請選擇: ";   
  26.     cin>>option;
  27.         if(option==1)
  28.         {
  29.                 cout<<"你要儲值多少錢:";       
  30.                 cin>>buy;
  31.                 balance=balance+buy;
  32.                 goto re;
  33.         }
  34.        

  35.     system("pause");
  36.     system("cls");
  37.     while(s[r]<=73)
  38.     {
  39.         r=rand()%4;   //0~3
  40.         s[r]++;
  41.         cout<<"比賽進行中"<<endl;
  42.         cout<<"--------------------------------------------------------------------------| 終點"<<endl;
  43.         for(int i=0; i<4; i++)
  44.         {
  45.             for(int j=0; j<s[i]; j++)
  46.                 cout<<" ";
  47.             cout<<p[i]<<endl;
  48.         }
  49.         _sleep(50);
  50.         system("cls");
  51.     }
  52.     cout<<"比賽結束!  由 "<<p[r]<<" 先馳得點!"<<endl;
  53.     cout<<"--------------------------------------------------------------------------| 終點"<<endl;
  54.     for(int i=0; i<4; i++)
  55.     {
  56.         for(int j=0; j<s[i]; j++)
  57.             cout<<" ";
  58.         cout<<p[i]<<endl;
  59.     }
  60.     system("pause");
  61.     round++;
  62.     goto re;
  63.     return 0;
  64. }
複製代碼

TOP

返回列表