- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- int space[4]={0,0,0,0};
- srand(time(NULL));
- 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]==34)
- break;
- cout<<"比賽進行中"<<endl;
- cout<<"----------------------------------|終點"<<endl;
- for(int j=0;j<space[0];j++)
- 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 j=0;j<space[0];j++)
- 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;
- }
複製代碼 |