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

TOP

返回列表