返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int x,y,sum=0;
  8.     int money,money2;
  9.     int c=1;

  10.     srand(time(NULL));
  11.     string b[]{"◆","★","▲","●"};
  12.     re:
  13.     int z=0;
  14.     int a[]{0,0,0,0};
  15.     system("cls");
  16.     cout<<"「好事成雙」賽馬場  第"<<c<<" 局"<<endl;
  17.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  18.     for(int i=0; i<4; i++)
  19.         cout<<b[i]<<endl;
  20.     cout<<"可用餘額:"<<sum<<"元"<<endl<<endl;
  21.     cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
  22.     cin>>x;
  23.     if(x==1){
  24.         cout<<"買入: ";
  25.         cin>>money;
  26.             if(money<=0){
  27.                 cout<<"輸入錯誤!";
  28.                 _sleep(1500);
  29.                 goto re;
  30.             }else{
  31.                 sum+=money;
  32.                 goto re;
  33.             }
  34.     }else if(x==2){
  35.         cout<<"下注: ";
  36.         cin>>money2;
  37.         if(money2<=0){
  38.             cout<<"輸入錯誤!";
  39.             _sleep(1500);
  40.             goto re;
  41.         }else if(money2>sum){
  42.             cout<<"可用餘額不足,請先買入!";
  43.             _sleep(1500);
  44.             goto re;
  45.         }else{
  46.             cout<<"請選擇下注對象!";
  47.             cout<<endl<<"(1)◆ (2)★ (3)▲ (4)● 請選擇: ";
  48.             cin>>y;
  49.             sum-=money2;
  50.             cout<<"比賽即將開始..."<<endl<<endl;
  51.         }

  52.     }else if(x==3){
  53.         goto end;
  54.     }else{
  55.         cout<<"輸入錯誤!";
  56.         _sleep(1500);
  57.         goto re;
  58.     }
  59.     system("pause");
  60.     system("cls");
  61.     while(a[z]<=73)
  62.     {
  63.         z=rand()%4;
  64.         a[z]++;
  65.         cout<<"比賽進行中"<<endl;
  66.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  67.         for(int i=0; i<4; i++)
  68.         {
  69.             for(int j=0; j<a[i]; j++)
  70.                 cout<<" ";
  71.                 cout<<b[i]<<endl;
  72.         }
  73.         _sleep(1);
  74.         system("cls");
  75.     }
  76.     cout<<"比賽結束!  由 "<<b[z]<<" 先馳得點!"<<endl;
  77.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  78.     for(int i=0; i<4; i++)
  79.         {
  80.             for(int j=0; j<a[i]; j++)
  81.                 cout<<" ";
  82.                 cout<<b[i]<<endl;
  83.         }
  84.     if(y-1==z){
  85.         cout<<"恭喜贏得"<<money2*3<<"元!!!";
  86.         sum+=money2*3;
  87.     }else{
  88.         cout<<"損失"<<money2<<"元";
  89.     }
  90.     c++;
  91.     system("pause");
  92.     goto re;
  93.     end:
  94.     cout<<endl<<"慢走!"<<endl;
  95.     _sleep(1500);
  96.     system("pause");
  97.     return 0;
  98. }
複製代碼

TOP

返回列表