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

TOP

返回列表