- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int r ;
- srand(time(NULL));
- int h[4] = {0,0,0,0};
- cout<<"賽馬場"<<endl<<"----------------------------------------終點"<<endl;
- cout<<"◆"<<endl<<"★"<<endl<<"▲"<<endl<<"●"<<endl;
- system("pause");
- system("cls");
- while(true)
- {
- cout<<"比賽中"<<endl<<"----------------------------------------終點"<<endl;
- 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]>=40)
- break;
- _sleep(10);
- system("cls");
- }
- system("pause");
- return 0;
- }
複製代碼 |