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

TOP

返回列表