返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int t=1, j=0;
  7.     re1:
  8.     int a=0, b=0, c=0, d=0, r, k, m;
  9.     system("cls");
  10.     cout<<"﹩財源滾滾賽馬場 ﹩";
  11.     cout<<" 第"<<t<<"局"<<endl;
  12.     cout<<"=========================================================================| 終點"<<endl;
  13.     cout<<"◢1◤"<<endl;
  14.     cout<<"◢2◤"<<endl;
  15.     cout<<"◢3◤"<<endl;
  16.     cout<<"◢4◤"<<endl;
  17.     cout<<"可用餘額"<<j<<"元"<<endl<<endl;
  18.     cout<<"(1)買入  (2)下注  (3)離開  請選擇: ";
  19.     cin>>k;
  20.     if(k==1)
  21.     {
  22.             cout<<"買入: ";
  23.             cin>>m;
  24.             j+=m;
  25.             goto re1;
  26.     }
  27.     system("pause");
  28.     system("cls");
  29.     srand(time(NULL));
  30.     while(a!=75 && b!=75 && c!=75 && d!=75)
  31.     {
  32.         r=rand()%4;   
  33.         if(r==0)
  34.             a++;
  35.         else if(r==1)
  36.             b++;
  37.         else if(r==2)
  38.             c++;
  39.         else
  40.             d++;
  41.         cout<<"比賽進行中"<<endl;
  42.         cout<<"=========================================================================| 終點"<<endl;
  43.         for(int i=1; i<=a; i++)
  44.             cout<<" ";
  45.         cout<<"◢1◤"<<endl;
  46.         for(int i=1; i<=b; i++)
  47.             cout<<" ";
  48.         cout<<"◢2◤"<<endl;
  49.         for(int i=1; i<=c; i++)
  50.             cout<<" ";
  51.         cout<<"◢3◤"<<endl;
  52.         for(int i=1; i<=d; i++)
  53.             cout<<" ";
  54.         cout<<"◢4◤"<<endl;   
  55.         system("cls");      
  56.     }
  57.     cout<<"比賽結束";
  58.     if(a==75)
  59.         cout<<" 由◢1◤獲得勝利"<<endl;
  60.     else if(b==75)
  61.         cout<<" 由◢2◤獲得勝利"<<endl;   
  62.     else if(c==75)
  63.         cout<<" 由◢3◤獲得勝利"<<endl;   
  64.     else
  65.         cout<<" 由◢4◤獲得勝利"<<endl;   
  66.     cout<<"------------------------------------------------------------------------| 終點"<<endl;  
  67.     for(int i=1; i<=a; i++)
  68.         cout<<" ";
  69.     cout<<"◢1◤"<<endl;
  70.     for(int i=1; i<=b; i++)
  71.         cout<<" ";
  72.     cout<<"◢2◤"<<endl;
  73.     for(int i=1; i<=c; i++)
  74.         cout<<" ";
  75.     cout<<"◢3◤"<<endl;
  76.     for(int i=1; i<=d; i++)
  77.         cout<<" ";
  78.     cout<<"◢4◤"<<endl;
  79.     system("pause");
  80.     t++;
  81.     goto re1;
  82.     system("pause");
  83.     return 0;   
  84. }
複製代碼

TOP

返回列表