返回列表 發帖
  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,bet;
  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.     else if(option==2)
  28.     {
  29.         if(balance==0)
  30.         {
  31.             cout<<"可用餘額不足! 請先買入!"<<endl<<endl;
  32.             system("pause");
  33.             goto re1;              
  34.         }
  35.         cout<<"下注: ";
  36.         cin>>bet;
  37.         if(bet>balance)
  38.         {
  39.             cout<<"可用餘額不足! 請先買入!"<<endl<<endl;
  40.             system("pause");
  41.             goto re1;              
  42.         }
  43.         else
  44.         {
  45.             cout<<endl<<"(1)◢1◤ (2)◢2◤ (3)◢3◤ (4)◢4◤ 請選擇: ";
  46.             cin>>option;
  47.             cout<<"比賽即將開始..."<<endl<<endl;
  48.             system("pause");   
  49.         }
  50.     }
  51.     else if(option==3)
  52.     {
  53.         goto end;     
  54.     }
  55.     else
  56.     {
  57.         cout<<"輸入錯誤!"<<endl;
  58.         system("pause");
  59.         goto re1;     
  60.     }
  61.     system("cls");
  62.     srand(time(NULL));
  63.     while(a!=75 && b!=75 && c!=75 && d!=75)
  64.     {
  65.         r=rand()%4;
  66.         if(r==0)
  67.             a++;
  68.         else if(r==1)
  69.             b++;
  70.         else if(r==2)
  71.             c++;
  72.         else
  73.             d++;
  74.         cout<<"比賽進行中"<<endl;
  75.         cout<<"--------------------------------------------------------------------------│終點"<<endl;     
  76.         for(int i=1;i<=a;i++)
  77.             cout<<" ";
  78.         cout<<"◢1◤"<<endl;
  79.         for(int i=1;i<=b;i++)
  80.             cout<<" ";
  81.         cout<<"◢2◤"<<endl;
  82.         for(int i=1;i<=c;i++)
  83.             cout<<" ";
  84.         cout<<"◢3◤"<<endl;
  85.         for(int i=1;i<=d;i++)
  86.             cout<<" ";
  87.         cout<<"◢4◤"<<endl;
  88.         system("cls");                                   
  89.     }        
  90.     cout<<"比賽結束!由 ";
  91.     if(a==75)
  92.         cout<<"◢1◤";
  93.     if(b==75)
  94.         cout<<"◢2◤";
  95.     if(c==75)
  96.         cout<<"◢3◤";
  97.     if(d==75)
  98.         cout<<"◢4◤";
  99.     cout<<" 先馳得點"<<endl;   
  100.     cout<<"--------------------------------------------------------------------------│終點"<<endl;            
  101.     for(int i=1;i<=a;i++)
  102.         cout<<" ";
  103.     cout<<"◢1◤"<<endl;
  104.     for(int i=1;i<=b;i++)
  105.         cout<<" ";
  106.     cout<<"◢2◤"<<endl;
  107.     for(int i=1;i<=c;i++)
  108.         cout<<" ";
  109.     cout<<"◢3◤"<<endl;
  110.     for(int i=1;i<=d;i++)
  111.         cout<<" ";
  112.     cout<<"◢4◤"<<endl;
  113.     system("pause");
  114.     e++;
  115.     goto re1;
  116.     end:
  117.     system("pause");
  118.     return 0;
  119. }
複製代碼

TOP

返回列表