返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int x,y,z,sum=0,money,money2;
  8.     int a[]{0,0,0,0};
  9.     string b[]{"◆","★","▲","●"};
  10.     re2:
  11.     system("cls");
  12.     cout<<"空蕩蕩賽馬場"<<endl;
  13.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  14.     cout<<"◆"<<endl;
  15.     cout<<"★"<<endl;
  16.     cout<<"▲"<<endl;
  17.     cout<<"●"<<endl;
  18.     cout<<endl;
  19.     cout<<"可用餘額:"<<sum<<"元"<<endl<<endl;
  20.     cout<<"<1>買入 <2>下注 <3>離開   請選擇:";
  21.     cin>>z;
  22.     if(z==1)
  23.     {
  24.         cout<<"買入: ";
  25.         cin>>money;
  26.         sum+=money;
  27.         goto re2;
  28.     }
  29.     system("pause");
  30.     re:
  31.     if(a[0]<73&&a[1]<73&&a[2]<73&&a[3]<73)
  32.     {
  33.         system("cls");
  34.         cout<<"比賽開始"<<endl;
  35.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  36.         for(int i=0; i<=3; i++)
  37.        {
  38.            x=rand()%5+1;
  39.            a[i]+=x;
  40.            }
  41.            for(int i=1; i<=a[0]; i++)
  42.                 cout<<" ";
  43.             cout<<"◆"<<endl;
  44.            for(int i=1; i<=a[1]; i++)
  45.                 cout<<" ";
  46.             cout<<"★"<<endl;
  47.            for(int i=1; i<=a[2]; i++)
  48.                 cout<<" ";
  49.             cout<<"▲"<<endl;
  50.            for(int i=1; i<=a[3]; i++)
  51.                 cout<<" ";
  52.             cout<<"●"<<endl;
  53.          _sleep(100);
  54.         goto re;

  55.     }
  56.     else
  57.     {
  58.         if(a[0]>=73)
  59.             y=0;
  60.         if(a[1]>=73)
  61.             y=1;
  62.         if(a[2]>=73)
  63.             y=2;
  64.         if(a[3]>=73)
  65.             y=3;
  66.         system("cls");
  67.         cout<<"比賽結束由"<<b[y]<<"獲勝"<<endl;
  68.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  69.            for(int i=1; i<=a[0]; i++)
  70.                 cout<<" ";
  71.             cout<<"◆"<<endl;
  72.            for(int i=1; i<=a[1]; i++)
  73.                 cout<<" ";
  74.             cout<<"★"<<endl;
  75.            for(int i=1; i<=a[2]; i++)
  76.                 cout<<" ";
  77.             cout<<"▲"<<endl;
  78.            for(int i=1; i<=a[3]; i++)
  79.                 cout<<" ";
  80.             cout<<"●"<<endl;
  81.     }
  82.     system("pause");
  83.     return 0;
  84. }
複製代碼

TOP

返回列表