返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main(){
  6.         int round=1;
  7.         int balance=0;
  8.         int option;
  9.         int buy;      
  10.       
  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.         cout<<endl<<"可用餘額:"<<balance<<"元"<<endl<<endl;
  22.     cout<<"(1)買入 (2)下注 (3)離開 請選擇:";
  23.     cin>>option;
  24.         if(option==1){
  25.             cout<<"買入:";
  26.             cin>>buy;
  27.             balance=balance+buy;      
  28.             goto re;
  29.         }      
  30.     system("pause");
  31.     system("cls");        
  32.     while(s[r]<=73){
  33.         r=rand()%4;   
  34.         s[r]++;      
  35.         cout<<"比賽進行中"<<endl;
  36.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  37.         for(int i=0; i<4; i++){
  38.             for(int j=0; j<s[i]; j++)
  39.                 cout<<" ";        
  40.             cout<<p[i]<<endl;        
  41.         }
  42.         _sleep(1);
  43.         system("cls");
  44.     }
  45.     cout<<"比賽結束!由"<<p[r]<<"獲勝"<<endl;
  46.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  47.     for(int i=0; i<4; i++){
  48.            
  49.         for(int j=0; j<s[i]; j++)
  50.             cout<<" ";
  51.         cout<<p[i]<<endl;
  52.     }
  53.     system("pause");
  54.     round++;      
  55.     goto re;
  56.     return 0;
  57. }
複製代碼

TOP

返回列表