- #include<iostream>
- #include<cstdlib>
- 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");
- while(true)
- {
- cout<<"比賽進行中"<<endl;
- cout<<"-------------------------------------------------------------------------|終點"<<endl;
- int r=rand()%4;
- h[r]++;
- for(int i=1;i<=h[0];i++)
- {
- cout<<" ";
- }
- cout<<"◆"<<endl;
- for(int i=1;i<=h[1];i++)
- {
- cout<<" ";
- }
- cout<<"★"<<endl;
- for(int i=1;i<=h[2];i++)
- {
- cout<<" ";
- }
- cout<<"▲"<<endl;
- for(int i=1;i<=h[3];i++)
- {
- cout<<" ";
- }
- cout<<"●"<<endl;
- if(h[r]==72)
- {
- break;
- }
- system("cls");
- }
- system("pause");
- return 0;
- }
-
複製代碼 |