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

TOP

返回列表