返回列表 發帖

[精簡版]賽馬程式 (二)

本帖最後由 李泳霖 於 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. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表