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

TOP

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

TOP

返回列表