返回列表 發帖

[隨堂測驗] 賽馬程式 (三)

1. 在比賽首頁顯示第幾局
2. 在比賽結束頁顯示哪一位選手勝出





本帖隱藏的內容需要回復才可以瀏覽

本帖最後由 林少謙 於 2024-7-27 16:09 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int x,y,t=1;
  8.     re2:
  9.     int a[]{0,0,0,0};
  10.     string b[]{"◆","★","▲","●"};
  11.     cout<<"空蕩蕩賽馬場  第"<<t<<"場"<<endl;
  12.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  13.     cout<<"◆"<<endl;
  14.     cout<<"★"<<endl;
  15.     cout<<"▲"<<endl;
  16.     cout<<"●"<<endl;
  17.     system("pause");
  18.     re:
  19.     if(a[0]<73&&a[1]<73&&a[2]<73&&a[3]<73)
  20.     {
  21.         system("cls");
  22.         cout<<"比賽開始"<<endl;
  23.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  24.         for(int i=0; i<=3; i++)
  25.        {
  26.            x=rand()%5+1;
  27.            a[i]+=x;
  28.            }
  29.            for(int i=1; i<=a[0]; i++)
  30.                 cout<<" ";
  31.             cout<<"◆"<<endl;
  32.            for(int i=1; i<=a[1]; i++)
  33.                 cout<<" ";
  34.             cout<<"★"<<endl;
  35.            for(int i=1; i<=a[2]; i++)
  36.                 cout<<" ";
  37.             cout<<"▲"<<endl;
  38.            for(int i=1; i<=a[3]; i++)
  39.                 cout<<" ";
  40.             cout<<"●"<<endl;
  41.          _sleep(100);
  42.         goto re;

  43.     }
  44.     else
  45.     {
  46.         if(a[0]>=73)
  47.             y=0;
  48.         if(a[1]>=73)
  49.             y=1;
  50.         if(a[2]>=73)
  51.             y=2;
  52.         if(a[3]>=73)
  53.             y=3;
  54.         system("cls");
  55.         cout<<"比賽結束由"<<b[y]<<"獲勝"<<endl;
  56.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  57.            for(int i=1; i<=a[0]; i++)
  58.                 cout<<" ";
  59.             cout<<"◆"<<endl;
  60.            for(int i=1; i<=a[1]; i++)
  61.                 cout<<" ";
  62.             cout<<"★"<<endl;
  63.            for(int i=1; i<=a[2]; i++)
  64.                 cout<<" ";
  65.             cout<<"▲"<<endl;
  66.            for(int i=1; i<=a[3]; i++)
  67.                 cout<<" ";
  68.             cout<<"●"<<endl;
  69.     }
  70.     system("pause");
  71.     t+=1;
  72.     goto re2:
  73.     return 0;
  74. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int s=1;
  8.     re1:
  9.     srand(time(NULL));
  10.     cout<<"賽馬場   第"<<s<<"局"<<endl;
  11.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  12.     int a[]{0,0,0,0};
  13.     int t;
  14.     cout<<"◆"<<endl;
  15.     cout<<"★"<<endl;
  16.     cout<<"▲"<<endl;
  17.     cout<<"●"<<endl;
  18.     system("pause");
  19.     cout<<"比賽開始"<<endl;
  20.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;

  21.     re:
  22.     if(a[0]<73&&a[1]<73&&a[2]<73&&a[3]<73){
  23.         system("cls");
  24.         cout<<"比賽進行中"<<endl;
  25.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;


  26.         s=rand()%4;
  27.         a[s]++;

  28.         for(int i=1; i<=a[0]; i++)
  29.                 cout<<" ";
  30.             cout<<"◆"<<endl;
  31.         for(int i=1; i<=a[1]; i++)
  32.                 cout<<" ";
  33.             cout<<"★"<<endl;
  34.         for(int i=1; i<=a[2]; i++)
  35.                 cout<<" ";
  36.             cout<<"▲"<<endl;
  37.         for(int i=1; i<=a[3]; i++)
  38.                 cout<<" ";
  39.             cout<<"●"<<endl;
  40.          _sleep(1);


  41.         goto re;
  42.         }else{
  43.         system("cls");
  44.         if(a[0]>=73){

  45.             cout<<"比賽結束,最終由◆勝出!!!"<<endl;

  46.         }else if(a[1]>=73){

  47.             cout<<"比賽結束,最終由★勝出!!!"<<endl;

  48.         }else if(a[2]>=73){

  49.             cout<<"比賽結束,最終由▲勝出!!!"<<endl;

  50.         }else if(a[3]>=73){

  51.             cout<<"比賽結束,最終由●勝出!!!"<<endl;

  52.         }

  53.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  54.         }
  55.         for(int i=1; i<=a[0]; i++)
  56.                 cout<<" ";
  57.             cout<<"◆"<<endl;
  58.            for(int i=1; i<=a[1]; i++)
  59.                 cout<<" ";
  60.             cout<<"★"<<endl;
  61.            for(int i=1; i<=a[2]; i++)
  62.                 cout<<" ";
  63.             cout<<"▲"<<endl;
  64.            for(int i=1; i<=a[3]; i++)
  65.                 cout<<" ";
  66.             cout<<"●"<<endl;
  67.         s++;
  68.         system("pause");
  69.         goto re1;
  70.         return 0;
  71.     }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     n=1;
  8.     re:
  9.     system("cls");
  10.     int a=0, b=0, c=0, d=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.     system("cls");
  21.     cout<<"比賽中"<<endl;
  22.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;\


  23.     int r=rand()%4;
  24.     if(r==0){
  25.         a++;
  26.     }
  27.     else if(r==1){
  28.         b++;
  29.     }
  30.     else if(r==2){
  31.         c++;
  32.     }
  33.     else if(r==3){
  34.         d++;
  35.     }

  36.     for(int i=1; i<=a; i++){
  37.         cout<<" ";}
  38.     cout<<"◆"<<endl;

  39.     for(int j=1; j<=b; j++){
  40.         cout<<" ";}
  41.     cout<<"★"<<endl;

  42.     for(int k=1; k<=c; k++){
  43.         cout<<" ";}
  44.     cout<<"▲"<<endl;

  45.     for(int l=1; l<=d; l++){
  46.         cout<<" ";}
  47.     cout<<"●"<<endl;
  48.     _sleep(50);
  49.     if((a==73)||(b==73)||(c==73)||(d==73))
  50.         break;
  51.     }
  52.     system("cls");
  53.     if(a==73){
  54.     cout<<"比賽結束,由◆先馳得點"<<endl;
  55.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  56.     }
  57.     if(b==73){
  58.     cout<<"比賽結束,由★先馳得點"<<endl;
  59.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  60.     }
  61.     if(c==73){
  62.     cout<<"比賽結束,由▲先馳得點"<<endl;
  63.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  64.     }
  65.     if(d==73){
  66.     cout<<"比賽結束,由●先馳得點"<<endl;
  67.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  68.     }
  69.     for(int i=1; i<=a; i++){
  70.         cout<<" ";}
  71.     cout<<"◆"<<endl;

  72.     for(int j=1; j<=b; j++){
  73.         cout<<" ";}
  74.     cout<<"★"<<endl;

  75.     for(int k=1; k<=c; k++){
  76.         cout<<" ";}
  77.     cout<<"▲"<<endl;

  78.     for(int l=1; l<=d; l++){
  79.         cout<<" ";}
  80.     cout<<"●"<<endl;
  81.     n++;
  82.     system("pause");
  83.     goto re;
  84.     return 0;
  85. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main(){
  6.     int z=1;
  7.     int x,y;

  8. re1:
  9.     int n[]={0,0,0,0};
  10.     system("cls");
  11. srand(time(NULL));
  12. cout<<"「好事成雙」賽馬程式"<<endl;
  13. cout<<"---------------------------------------------------------------|終點"<<endl;
  14. cout<<"◆"<<endl;
  15. cout<<"★"<<endl;
  16. cout<<"▲"<<endl;
  17. cout<<"●"<<endl;
  18.    system("pause");
  19. re:
  20.     if(n[0]<70&&n[1]<70&&n[2]<70&&n[3]<73){
  21. system("cls");
  22. cout<<"比賽進行中 第"<<z<<"局"<<endl;
  23. cout<<"-------------------------------------------------------------------|終點"<<endl;
  24. int speed=0.01;
  25.     x=rand()%4;
  26.     n[x]++;

  27.     for(int i=1;i<=n[0];i++)
  28.        cout<<" ";
  29.        cout<<"◆"<<endl;
  30.     for(int i=1;i<=n[1];i++)
  31.        cout<<" ";
  32.        cout<<"★"<<endl;
  33.     for(int i=1;i<=n[2];i++)
  34.        cout<<" ";
  35.        cout<<"▲"<<endl;
  36.     for(int i=1;i<=n[3];i++)
  37.        cout<<" ";
  38.        cout<<"●"<<endl;
  39.     _sleep(speed);
  40. goto re;
  41. }
  42. else{
  43.     system("cls");
  44.     if(n[0]>=70)
  45.         cout<<"由◆勝出,";
  46.     else if(n[1]>=70)
  47.         cout<<"由★勝出,";
  48.     else if(n[2]>=70)
  49.         cout<<"由▲勝出,";
  50.     else if(n[3]>=70)
  51.         cout<<"由●勝出,";
  52.     cout<<"比賽結束!"<<endl;
  53.     cout<<"-------------------------------------------------------------------|終點"<<endl;
  54.     for(int i=1;i<=n[0];i++)
  55.         cout<<" ";
  56.         cout<<"◆"<<endl;
  57.      for(int i=1;i<=n[1];i++)
  58.         cout<<" ";
  59.         cout<<"★"<<endl;
  60.     for(int i=1;i<=n[2];i++)
  61.         cout<<" ";
  62.         cout<<"▲"<<endl;
  63.     for(int i=1;i<=n[3];i++)
  64.         cout<<" ";
  65.         cout<<"●"<<endl;
  66.         }


  67. z++;
  68. system("pause");
  69. goto re1;
  70. return 0;
  71. }
複製代碼

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 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

  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

返回列表