Board logo

標題: 賽馬程式 (二) [打印本頁]

作者: 鄭繼威    時間: 2022-12-28 21:06     標題: 賽馬程式 (二)

本帖最後由 鄭繼威 於 2023-1-4 20:38 編輯

使畫面動起來



  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     re:
  8.     system("cls");
  9.     srand(time(NULL));
  10.     int s[]={0,0,0,0};        //存放進度用的
  11.     string p[]={"◆","★","▲","●"};        //存放馬用的
  12.     int r=0;
  13.     cout<<"「好事成雙」賽馬場"<<endl;
  14.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  15.     for(int i=0; i<4; i++)
  16.         cout<<p[i]<<endl;        //把馬印出來
  17.     system("pause");
  18.     system("cls");        //清空畫面
  19.     while(s[r]<=73)        //開始賽馬
  20.     {
  21.         r=rand()%4;   //0~3        (抽馬)
  22.         s[r]++;        //看電腦抽到哪隻馬就+1
  23.         cout<<"比賽進行中"<<endl;
  24.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  25.         for(int i=0; i<4; i++)
  26.         {
  27.             for(int j=0; j<s[i]; j++)
  28.                 cout<<" ";        //印空格(看進度是多少就印多少空格)
  29.             cout<<p[i]<<endl;        //把馬印出來
  30.         }
  31.         _sleep(50);
  32.         system("cls");
  33.     }
  34.     cout<<"比賽結束"<<endl;
  35.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  36.     for(int i=0; i<4; i++)
  37.     {
  38.            
  39.         for(int j=0; j<s[i]; j++)
  40.             cout<<" ";
  41.         cout<<p[i]<<endl;
  42.     }
  43.     system("pause");
  44.     goto re;
  45.     return 0;
  46. }
複製代碼

作者: 連翊恩    時間: 2023-1-4 20:39

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

作者: 李彣    時間: 2023-1-4 20:41

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

作者: 林劭杰    時間: 2023-1-4 20:48

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

作者: 黃裕恩    時間: 2023-1-4 20:49

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

作者: 林劭澧    時間: 2023-1-4 21:01

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





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2