返回列表 發帖
  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.    
  26.     if(option==1)
  27.     {
  28.                cout<<"買入: ";
  29.                cin>>buy;
  30.                balance=balance+buy;  
  31.                goto re;
  32.     }           
  33.     system("cls");      
  34.     while(s[r]<=73)      
  35.     {
  36.         r=rand()%4;   
  37.         s[r]++;      
  38.         cout<<"比賽進行中"<<endl;
  39.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  40.         for(int i=0; i<4; i++)
  41.         {
  42.             for(int j=0; j<s[i]; j++)
  43.                 cout<<" ";        
  44.             cout<<p[i]<<endl;        
  45.         }
  46.         _sleep(1);
  47.         system("cls");
  48.     }
  49.     cout<<"比賽結束!  由 "<<p[r]<<" 馬先馳得點!"<<endl;
  50.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  51.     for(int i=0; i<4; i++)
  52.     {
  53.            
  54.         for(int j=0; j<s[i]; j++)
  55.             cout<<" ";
  56.         cout<<p[i]<<endl;
  57.     }
  58.     system("pause");
  59.     round++;        
  60.     goto re;
  61.     system("pause");
  62.     return 0;
  63. }
複製代碼

TOP

返回列表