返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int a=1;
  8.     int balance=0, x, money, money2, n;
  9.     re:
  10.     system("cls");
  11.     srand(time(NULL));
  12.     int s[]={0,0,0,0};
  13.     cout<<"「好事成雙」賽馬場 第 "<<a<<" 局"<<endl;
  14.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  15.     cout<<"◆"<<endl;
  16.     cout<<"★"<<endl;
  17.     cout<<"▲"<<endl;
  18.     cout<<"●"<<endl;
  19.     {
  20.         cout<<"可用餘額:"<<balance<<"元"<<endl<<endl;
  21.         cout<<"(1)買入  (2)下注  (3)離開  請選擇:";
  22.         cin>>x;
  23.         if(x==1)
  24.         {
  25.             cout<<"買入: ";
  26.             cin>>money;
  27.             balance+=money;
  28.             system("cls");
  29.             goto re;
  30.         }
  31.         else if(x==2)
  32.         {
  33.             cout<<"下注: ";
  34.             cin>>money2;
  35.             cout<<endl;
  36.             cout<<"(1)◆ (2)★ (3)▲ (4)●  請選擇:";
  37.             cin>>n;
  38.             if(n>4)
  39.             {
  40.             system("cls");
  41.             goto re;
  42.             }
  43.             else
  44.             {
  45.             cout<<"比賽即將開始..."<<endl<<endl;
  46.             system("pause");
  47.             }
  48.         }
  49.         else if(x==3)
  50.             {
  51.             cout<<"慢走"<<endl;
  52.             system("pause");
  53.             system("cls");
  54.             goto re;
  55.             }
  56.     }
  57.     while(true)
  58.     {
  59.         system("cls");
  60.         int r=rand()%4;
  61.         s[r]++;
  62.         cout<<"比賽進行中"<<endl;
  63.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  64.         for(int i=0; i<=s[0]; i++)
  65.             cout<<" ";
  66.         cout<<"◆"<<endl;
  67.         for(int i=0; i<=s[1]; i++)
  68.             cout<<" ";
  69.         cout<<"★"<<endl;
  70.         for(int i=0; i<=s[2]; i++)
  71.             cout<<" ";
  72.         cout<<"▲"<<endl;
  73.         for(int i=0; i<=s[3]; i++)
  74.             cout<<" ";
  75.         cout<<"●"<<endl;
  76.         if(s[r]==73)
  77.             break;
  78.         _sleep(0.00000001);
  79.     }
  80.     system("cls");
  81.     cout<<"比賽結束 ";
  82.     if(s[0]==73)
  83.         cout<<"由◆先馳得點!"<<endl;
  84.     if(s[1]==73)
  85.         cout<<"由★先馳得點!"<<endl;
  86.     if(s[2]==73)
  87.         cout<<"由▲先馳得點!"<<endl;
  88.     if(s[3]==73)
  89.         cout<<"由●先馳得點!"<<endl;
  90.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  91.     for(int i=0; i<=s[0]; i++)
  92.         cout<<" ";
  93.     cout<<"◆"<<endl;
  94.     for(int i=0; i<=s[1]; i++)
  95.         cout<<" ";
  96.     cout<<"★"<<endl;
  97.     for(int i=0; i<=s[2]; i++)
  98.         cout<<" ";
  99.     cout<<"▲"<<endl;
  100.     for(int i=0; i<=s[3]; i++)
  101.         cout<<" ";
  102.     cout<<"●"<<endl;
  103.     if(n==s[0])
  104.         {
  105.         cout<<"贏得"<<money2*3<<"元"<<endl;
  106.         balance+=money2*3;
  107.         }
  108.     if(n==s[1])
  109.         {
  110.         cout<<"贏得"<<money2*3<<"元"<<endl;
  111.         balance+=money2*3;
  112.         }
  113.     if(n==s[2])
  114.         {
  115.         cout<<"贏得"<<money2*3<<"元"<<endl;
  116.         balance+=money2*3;
  117.         }
  118.     if(n==s[3])
  119.         {
  120.         cout<<"贏得"<<money2*3<<"元"<<endl;
  121.         balance+=money2*3;
  122.         }
  123.     else
  124.         {
  125.         cout<<"損失"<<money2<<"元"<<endl;
  126.         balance-=money2;
  127.         }
  128.     system("pause");
  129.     a++;
  130.     goto re;
  131.     return 0;
  132. }
複製代碼

TOP

返回列表