返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int e=1,balance=0;
  7.     re1:
  8.     int a=0,b=0,c=0,d=0,r,option,buyin;
  9.     system("cls");   
  10.     cout<<"$ 888賽馬場 第"<<e<<"局 $"<<endl;
  11.     cout<<"--------------------------------------------------------------------------│"<<endl;     
  12.     cout<<"◢1◤"<<endl;
  13.     cout<<"◢2◤"<<endl;
  14.     cout<<"◢3◤"<<endl;
  15.     cout<<"◢4◤"<<endl;
  16.     cout<<endl;
  17.     cout<<"可用餘額:"<<balance<<"元"<<endl<<endl;
  18.     cout<<"(1)買入  (2)下注  (3)離開  請選擇:  ";
  19.     cin>>option;
  20.     if(option==1)
  21.     {
  22.         cout<<"買入: ";
  23.         cin>>buyin;
  24.         balance+=buyin;
  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◤";
  60.     if(b==75)
  61.         cout<<"◢2◤";
  62.     if(c==75)
  63.         cout<<"◢3◤";
  64.     if(d==75)
  65.         cout<<"◢4◤";
  66.     cout<<" 先馳得點"<<endl;   
  67.     cout<<"--------------------------------------------------------------------------│終點"<<endl;            
  68.     for(int i=1;i<=a;i++)
  69.         cout<<" ";
  70.     cout<<"◢1◤"<<endl;
  71.     for(int i=1;i<=b;i++)
  72.         cout<<" ";
  73.     cout<<"◢2◤"<<endl;
  74.     for(int i=1;i<=c;i++)
  75.         cout<<" ";
  76.     cout<<"◢3◤"<<endl;
  77.     for(int i=1;i<=d;i++)
  78.         cout<<" ";
  79.     cout<<"◢4◤"<<endl;
  80.     system("pause");
  81.     e++;
  82.     goto re1;
  83.     system("pause");
  84.     return 0;
  85. }
複製代碼

TOP

返回列表