返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int space[4]={0,0,0,0};
  7.     srand(time(NULL));
  8.     cout<<"沒錢馬賽場"<<endl;
  9.     cout<<"--------------------------------------------------------------------終點"<<endl;
  10.     cout<<"☆"<<endl;
  11.     cout<<"▽"<<endl;
  12.     cout<<"◆"<<endl;
  13.     cout<<"㊣"<<endl;
  14.     system("pause");
  15.     while(true)
  16.     {
  17.                int r=rand()%4;
  18.                space[r]++;
  19.                if(space[r]==30)
  20.                break;
  21.                cout<<"比賽進行中"<<endl;
  22.                cout<<"------------------------------------------------------------終點"<<endl;
  23.                for(int j=0;j<space[0];j++)
  24.                      cout<<"  ";
  25.                      cout<<"☆"<<endl;
  26.                for(int j=0;j<space[1];j++)
  27.                      cout<<"  ";
  28.                      cout<<"▽"<<endl;
  29.                for(int j=0;j<space[2];j++)
  30.                      cout<<"  ";
  31.                      cout<<"◆"<<endl;
  32.                for(int j=0;j<space[3];j++)
  33.                      cout<<"  ";
  34.                      cout<<"㊣"<<endl;
  35.                      system("cls");               
  36.                      
  37.     }
  38.               cout<<"比賽結束"<<endl;
  39.               cout<<"----------------------------------------------------------終點"<<endl;
  40.               for(int j=0;j<space[0];j++)
  41.                      cout<<"  ";
  42.                      cout<<"☆"<<endl;
  43.                for(int j=0;j<space[1];j++)
  44.                      cout<<"  ";
  45.                      cout<<"▽"<<endl;
  46.                for(int j=0;j<space[2];j++)
  47.                      cout<<"  ";
  48.                      cout<<"◆"<<endl;
  49.                for(int j=0;j<space[3];j++)
  50.                      cout<<"  ";
  51.                      cout<<"㊣"<<endl;
  52.                      
  53.                 system("pause");
  54.                    return 0;
  55.               
  56. }
複製代碼

TOP

返回列表