- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- int h[4]={0,0,0,0};
- srand (time(NULL));
- cout<<"「好事成雙」賽馬場"<<endl;
- cout<<"-----------------------------------------------------------------------|終點"<<endl;
- cout<<"◆"<<endl;
- cout<<"★"<<endl;
- cout<<"▲"<<endl;
- cout<<"●"<<endl;
- system("pause");
- system("cls");
- while(true)
- {
- int r=rand()%4;
- h[r]++;
- cout<<"比賽進行中"<<endl;
- cout<<"-----------------------------------------------------------------------|終點"<<endl;
- for(int k=1; k<=h[0]; k++)
- cout<<" ";
- cout<<"◆"<<endl;
- for(int k=1; k<=h[1]; k++)
- cout<<" ";
- cout<<"★"<<endl;
- for(int k=1; k<=h[2]; k++)
- cout<<" ";
- cout<<"▲"<<endl;
- for(int k=1; k<=h[3]; k++)
- cout<<" ";
- cout<<"●"<<endl;
- if(h[r]==71)
- break;
- _sleep(10);
- system("cls");
- }
- system("pause");
- return 0;
- }
複製代碼 |