返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int space[4]={0,0,0,0};
  8.     srand(time(NULL));
  9.     cout<<"[好棒棒]賭賽馬場"<<endl;
  10.     cout<<"-------------------------------------|終點"<<endl;
  11.     cout<<"◆"<<endl;
  12.     cout<<"★"<<endl;
  13.     cout<<"▲"<<endl;
  14.     cout<<"●"<<endl;
  15.     system("pause");
  16.     while(true)
  17.     {
  18.         int r=rand()%4;
  19.         space[r]++;
  20.         if(space[r]==34)
  21.           break;
  22.         cout<<"比賽進行中"<<endl;
  23.         cout<<"----------------------------------|終點"<<endl;
  24.         for(int j=0;j<space[0];j++)
  25.         cout<<" ";
  26.         cout<<"◆"<<endl;
  27.         for(int j=0;j<space[1];j++)
  28.         cout<<" ";
  29.         cout<<"★"<<endl;
  30.         for(int j=0;j<space[2];j++)
  31.         cout<<" ";
  32.         cout<<"▲"<<endl;
  33.         for(int j=0;j<space[3];j++)
  34.         cout<<" ";
  35.         cout<<"●"<<endl;
  36.         system("cls");
  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.         system("pause");
  53.         return 0;         
  54. }        
複製代碼

TOP

返回列表