返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int t=1;
  8.     int s,sum,v,money=0;
  9.     re1:
  10.     srand(time(NULL));
  11.     cout<<"賽馬場   第"<<t<<"局"<<endl;
  12.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  13.     int a[]{0,0,0,0};

  14.     cout<<"◆"<<endl;
  15.     cout<<"★"<<endl;
  16.     cout<<"▲"<<endl;
  17.     cout<<"●"<<endl;
  18.     re2:
  19.     cout<<"可用餘額:"<<sum<<"元"<<endl<<endl;
  20.     cout<<"(1)買入 (2)下注 (3)離開   請選擇:";
  21.     cin>>v;
  22.     if(v==1)
  23.     {
  24.         cout<<"買入: ";
  25.         cin>>money;
  26.         sum+=money;


  27.     }
  28.     system("pause");
  29.     cout<<"比賽開始"<<endl;
  30.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;

  31.     re:
  32.     if(a[0]<73&&a[1]<73&&a[2]<73&&a[3]<73){
  33.         system("cls");
  34.         cout<<"比賽進行中"<<endl;
  35.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;


  36.         s=rand()%4;
  37.         a[s]++;

  38.         for(int i=1; i<=a[0]; i++)
  39.                 cout<<" ";
  40.             cout<<"◆"<<endl;
  41.         for(int i=1; i<=a[1]; i++)
  42.                 cout<<" ";
  43.             cout<<"★"<<endl;
  44.         for(int i=1; i<=a[2]; i++)
  45.                 cout<<" ";
  46.             cout<<"▲"<<endl;
  47.         for(int i=1; i<=a[3]; i++)
  48.                 cout<<" ";
  49.             cout<<"●"<<endl;
  50.          _sleep(1);


  51.         goto re;
  52.         }else{
  53.         system("cls");
  54.         if(a[0]>=73){

  55.             cout<<"比賽結束,最終由◆勝出!!!"<<endl;

  56.         }else if(a[1]>=73){

  57.             cout<<"比賽結束,最終由★勝出!!!"<<endl;

  58.         }else if(a[2]>=73){

  59.             cout<<"比賽結束,最終由▲勝出!!!"<<endl;

  60.         }else if(a[3]>=73){

  61.             cout<<"比賽結束,最終由●勝出!!!"<<endl;

  62.         }

  63.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  64.         }
  65.         for(int i=1; i<=a[0]; i++)
  66.                 cout<<" ";
  67.             cout<<"◆"<<endl;
  68.            for(int i=1; i<=a[1]; i++)
  69.                 cout<<" ";
  70.             cout<<"★"<<endl;
  71.            for(int i=1; i<=a[2]; i++)
  72.                 cout<<" ";
  73.             cout<<"▲"<<endl;
  74.            for(int i=1; i<=a[3]; i++)
  75.                 cout<<" ";
  76.             cout<<"●"<<endl;
  77.         t++;
  78.         system("pause");
  79.         goto re1;
  80.         return 0;
  81.     }
複製代碼

TOP

返回列表