返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int n=1;
  8.     int money=0, x, money2;
  9.     re:
  10.     system("cls");
  11.     srand(time(NULL));
  12.     int s[]={0,0,0,0};
  13.     cout<<"「好事成雙」賽馬場 第 "<<n<<" 局"<<endl;
  14.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  15.     cout<<"◆"<<endl;
  16.     cout<<"★"<<endl;
  17.     cout<<"▲"<<endl;
  18.     cout<<"●"<<endl;
  19.     {
  20.     cout<<"可用餘額:"<<money<<"元"<<endl<<endl;
  21.     cout<<"<1>買入 <2>下注 <3>離開   請選擇:";
  22.     cin>>x;
  23.     if(x==1)
  24.         cout<<"買入: ";
  25.         cin>>money2;
  26.         money+=money2;
  27.     system("cls");
  28.     goto re;
  29.     }
  30.     while(true)
  31.     {
  32.         system("cls");
  33.         int r=rand()%4;
  34.         s[r]++;
  35.         cout<<"比賽進行中"<<endl;
  36.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  37.         for(int i=0; i<=s[0]; i++)
  38.             cout<<" ";
  39.         cout<<"◆"<<endl;
  40.         for(int i=0; i<=s[1]; i++)
  41.             cout<<" ";
  42.         cout<<"★"<<endl;
  43.         for(int i=0; i<=s[2]; i++)
  44.             cout<<" ";
  45.         cout<<"▲"<<endl;
  46.         for(int i=0; i<=s[3]; i++)
  47.             cout<<" ";
  48.         cout<<"●"<<endl;
  49.         if(s[r]==73)
  50.             break;
  51.         _sleep(0.00000001);
  52.     }
  53.     system("cls");
  54.     cout<<"比賽結束 ";
  55.     if(s[0]==73)
  56.         cout<<"由◆先馳得點!"<<endl;
  57.     if(s[1]==73)
  58.         cout<<"由★先馳得點!"<<endl;
  59.     if(s[2]==73)
  60.         cout<<"由▲先馳得點!"<<endl;
  61.     if(s[3]==73)
  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.     system("pause");
  77.     n++;
  78.     goto re;
  79.     return 0;
  80. }
複製代碼

TOP

返回列表