返回列表 發帖
  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.     re:
  12.     system("cls");
  13.     srand(time(NULL));
  14.     int s[]={0,0,0,0};      
  15.     string p[]={"◆","★","▲","●"};     
  16.     int r=0;
  17.     cout<<"「好事成雙」賽馬場 第"<<round<<"局"<<endl;
  18.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  19.     for(int i=0; i<4; i++)
  20.         cout<<p[i]<<endl;     
  21.         
  22.         cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;
  23.     cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
  24.     cin>>option;
  25.         if(option==1){
  26.             cout<<"買入: ";
  27.             cin>>buy;
  28.             balance=balance+buy;        
  29.             goto re;
  30.         }
  31.         system("pause");
  32.     system("cls");      
  33.     while(s[r]<=73)        
  34.     {
  35.         r=rand()%4;   
  36.         s[r]++;      
  37.         cout<<"比賽進行中"<<endl;
  38.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  39.         for(int i=0; i<4; i++)
  40.         {
  41.             for(int j=0; j<s[i]; j++)
  42.                 cout<<" ";      
  43.             cout<<p[i]<<endl;      
  44.         }
  45.         _sleep(50);
  46.         system("cls");
  47.     }
  48.     cout<<"比賽結束!  由 "<<p[r]<<" 先馳得點!"<<endl;
  49.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  50.     for(int i=0; i<4; i++)
  51.     {
  52.         for(int j=0; j<s[i]; j++)
  53.             cout<<" ";
  54.         cout<<p[i]<<endl;
  55.     }
  56.     system("pause");
  57.     round++;      
  58.     goto re;
  59.     return 0;
  60. }
複製代碼

TOP

返回列表