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

TOP

返回列表