Board logo

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

作者: 李泳霖    時間: 2022-6-10 20:41     標題: [精簡版]賽馬程式 (二)

本帖最後由 李泳霖 於 2022-6-17 19: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[4]={0,0,0,0};
  11.     string p[4]={"◆","★","▲","●"};
  12.     int r=0;
  13.     cout<<"「好事成雙」賽馬場"<<endl;
  14.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  15.     for(int i=0;i<=3;i++)
  16.     cout<<p[i]<<endl;
  17.         
  18.     system("pause");
  19.     system("cls");
  20.     while(s[r]<=73)
  21.     {
  22.         r=rand()%4;
  23.         s[r]++;
  24.         cout<<"比賽進行中"<<endl;
  25.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  26.         for(int i=0;i<=3;i++)
  27.         {
  28.             for(int j=0;j<=s[i];j++)
  29.             {
  30.                 cout<<" ";
  31.             }
  32.             cout<<p[i]<<endl;
  33.         }
  34.         _sleep(10);
  35.         system("cls");
  36.     }
  37.     cout<<"比賽結束"<<endl;
  38.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  39.     for(int i=0;i<=3;i++)
  40.     {
  41.         for(int j=0;j<=s[i];j++)
  42.         {
  43.             cout<<" ";
  44.         }
  45.         cout<<p[i]<<endl;
  46.     }
  47.     system("pause");
  48.     goto re;
  49.     return 0;
  50. }
複製代碼

作者: 蘇允翎    時間: 2022-6-10 20:59

此帖僅作者可見
作者: 陳柏融    時間: 2022-6-10 20:59

此帖僅作者可見
作者: 吳侑諶    時間: 2022-6-10 21:00

此帖僅作者可見
作者: 洪浚恩    時間: 2022-6-10 21:00

此帖僅作者可見
作者: 王宥凱    時間: 2022-6-10 21:00

此帖僅作者可見
作者: 賴聿均    時間: 2022-6-10 21:00

此帖僅作者可見
作者: 郭又瑄    時間: 2022-6-10 21:01

此帖僅作者可見
作者: 許志捷    時間: 2022-6-10 21:01

此帖僅作者可見
作者: 尤爾璿    時間: 2022-6-17 19:39

此帖僅作者可見
作者: 尤爾帆    時間: 2022-6-17 19:40

此帖僅作者可見
作者: 呂宏晏    時間: 2022-6-17 19:41

此帖僅作者可見




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