返回列表 發帖
  1. #include<iostream>
  2. #include<ctime>
  3. using namespace std;
  4. int main()
  5. {
  6.     int s[]={0,0,0,0};
  7.     srand(time(NULL));
  8. cout<<"★★★The Wetherby Racecourse★★★"<<endl;
  9. cout<<"-------------------------------------------------------------------------|Finish"<<endl;
  10.     cout<<"◆"<<endl;
  11.     cout<<"★"<<endl;
  12.     cout<<"▲"<<endl;
  13.     cout<<"●"<<endl;
  14. while(true)
  15. {
  16.     system("cls");
  17.     int o=rand()%4;
  18.     s[o]++;
  19.     cout<<"★★★The Wetherby Racecourse★★★"<<endl;
  20.      cout<<"-------------------------------------------------------------------------|Finish"<<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[o]==73)
  34.     break;
  35.     _sleep(50);
  36. }
  37. system("cls");
  38. cout<<"Race Finished"<<endl;
  39. cout<<"★★★The Wetherby Racecourse★★★"<<endl;
  40. cout<<"-------------------------------------------------------------------------|Finish"<<endl;

  41.   for(int i=0; i<=s[0]; i++)
  42.         cout<<" ";
  43.     cout<<"◆"<<endl;
  44.     for(int i=0; i<=s[1]; i++)
  45.         cout<<" ";
  46.     cout<<"★"<<endl;
  47.     for(int i=0; i<=s[2]; i++)
  48.         cout<<" ";
  49.     cout<<"▲"<<endl;
  50.     for(int i=0; i<=s[3]; i++)
  51.         cout<<" ";
  52.     cout<<"●"<<endl;
  53. if(s[0]==73)
  54. cout<<"◆ Won"<<endl;
  55. if(s[1]==73)
  56. cout<<"★ Won"<<endl;
  57. if(s[2]==73)
  58. cout<<"▲ Won"<<endl;
  59. if(s[3]==73)
  60. cout<<"● Won"<<endl;
  61.          
  62. system("pause");
  63. return 0;
  64. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<ctime>
  3. using namespace std;
  4. int main()
  5. {
  6.     int r=1;
  7.     re:
  8.     int s[]={0,0,0,0};
  9.     string h[]={"◆","★","▲","●"};
  10.     srand(time(NULL));
  11. cout<<"★★★The Wetherby Racecourse★★★"<<endl;
  12. cout<<"-------------------------------------------------------------------------|Finish"<<endl;
  13.     for(int i=0;i<=3;i++)
  14.     cout<<h[i]<<endl;
  15.     system("pause");
  16. while(true)
  17. {
  18.     system("cls");
  19.     int o=rand()%4;
  20.     s[o]++;
  21.     cout<<"★★★The Wetherby Racecourse★★★"<<endl;
  22.      cout<<"-------------------------------------------------------------------------|Finish"<<endl;
  23.       for(int i=0; i<4; i++)
  24.         {
  25.             for(int j=0; j<s[i]; j++)
  26.             {
  27.                 cout<<" ";  
  28.                 }   
  29.                 cout<<h[i]<<endl;   
  30.         }
  31.          
  32.     if (s[o]==73)
  33.     break;
  34.     _sleep(50);
  35. }
  36. system("cls");
  37. cout<<"Race Finished"<<endl;
  38. cout<<"★★★The Wetherby Racecourse★★★"<<endl;
  39. cout<<"-------------------------------------------------------------------------|Finish"<<endl;

  40. for(int i=0; i<4; i++)
  41.         {
  42.             for(int j=0; j<s[i]; j++)
  43.             {
  44.                 cout<<" ";  
  45.                 }   
  46.                 cout<<h[i]<<endl;   
  47.         }
  48.          
  49. if(s[0]==73)
  50. cout<<"◆ Won The Race"<<endl;
  51. if(s[1]==73)
  52. cout<<"★ Won The Race"<<endl;
  53. if(s[2]==73)
  54. cout<<"▲ Won The Race"<<endl;
  55. if(s[3]==73)
  56. cout<<"● Won The Race"<<endl;
  57.           r++;
  58.           goto re;
  59.          
  60. system("pause");
  61. return 0;
  62. }
複製代碼

TOP

返回列表