返回列表 發帖

賽馬程式 (二)

本帖最後由 鄭繼威 於 2023-8-11 18:20 編輯

使畫面動起來


  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.     //把馬印出來
  14.     cout<<"◆"<<endl;
  15.     cout<<"★"<<endl;
  16.     cout<<"▲"<<endl;
  17.     cout<<"●"<<endl;
  18.     system("pause");

  19.     //開始賽馬
  20.     while(true)
  21.     {
  22.         system("cls");    //清空畫面
  23.         int r=rand()%4;   //0~3   (抽馬)
  24.         s[r]++;       //看電腦抽到哪隻馬就+1
  25.         cout<<"比賽進行中"<<endl;
  26.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  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.         _sleep(50);                     
  43.     }
  44.     system("cls");
  45.     cout<<"比賽結束"<<endl;
  46.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  47.     //印空格(看進度是多少就印多少空格)     
  48.     //把馬印出來
  49.     for(int i=0; i<=s[0]; i++)
  50.         cout<<" ";
  51.     cout<<"◆"<<endl;
  52.     for(int i=0; i<=s[1]; i++)
  53.         cout<<" ";
  54.     cout<<"★"<<endl;
  55.     for(int i=0; i<=s[2]; i++)
  56.         cout<<" ";
  57.     cout<<"▲"<<endl;
  58.     for(int i=0; i<=s[3]; i++)
  59.         cout<<" ";
  60.     cout<<"●"<<endl;
  61.     system("pause");
  62.     goto re;
  63.     return 0;
  64. }
複製代碼
本帖隱藏的內容需要回復才可以瀏覽

3

TOP

返回列表