- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- srand(time(NULL));
- int space[]={0,0,0,0};
- cout<<"賽馬場"<<endl;
- cout<<"------------------------------------------------------------------------------| 終點"<<endl;
- cout<<"◆"<<endl;
- cout<<"★"<<endl;
- cout<<"▲"<<endl;
- cout<<"●"<<endl;
- system("pause");
- while (true)
- {
- int r=rand()%4;
- space[r]++;
- if(space[r]==74)
- break;
- cout<<"比賽進行中"<<endl;
- cout<<"--------------------------------------------------------------------------| 終點"<<endl;
- for(int i=0;i<=space[0];i++)
- {
- cout<<" ";
- }
- cout<<"◆"<<endl;
- for(int j=0;j<=space[1]; j++)
- {
- cout<<" ";
- }
- cout<<"★"<<endl;
- for(int j=0;j<=space[2];j++)
- {
- cout<<" ";
- }
- cout<<"▲"<<endl;
- for(int j=0;j<=space[3];j++)
- {
- cout<<" ";
- }
- cout<<"●"<<endl;
- system("cls");
- }
- cout<<"比賽結束"<<endl;
- cout<<"--------------------------------------------------------------------------| 終點"<<endl;
- for(int i=0;i<=space[0];i++)
- {
- cout<<" ";
- }
- cout<<"◆"<<endl;
- for(int j=0;j<=space[1]; j++)
- {
- cout<<" ";
- }
- cout<<"★"<<endl;
- for(int j=0;j<=space[2];j++)
- {
- cout<<" ";
- }
- cout<<"▲"<<endl;
- for(int j=0;j<=space[3];j++)
- {
- cout<<" ";
- }
- cout<<"●"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |