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

TOP

返回列表