- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
-
- re:
- cout<<"[好事成雙]賽馬場\n----------------------------------------------------------|終點"<<endl;
- cout<<"▲"<<endl;
- cout<<"◆"<<endl;
- cout<<"★"<<endl;
- cout<<"●"<<endl;
- system("pause");
- system("cls");
- srand(time(NULL));
- int h[4]={0,0,0,0},win;
- string n[4]={"▲","◆","★","●"};
- while(true)
- {
- cout<<"比賽進行中\n------------------------------------------------------------|終點"<<endl;
- int r=rand()%4;
- h[r]++;
- for(int i=0;i<=h[0];i++)
- cout<<" ";
- cout<<"▲"<<endl;
- for(int i=0;i<=h[1];i++)
- cout<<" ";
- cout<<"◆"<<endl;
- for(int i=0;i<=h[2];i++)
- cout<<" ";
- cout<<"★"<<endl;
- for(int i=0;i<=h[3];i++)
- cout<<" ";
- cout<<"●"<<endl;
- if(h[r]==60){
- win=r;
- break;
- }
- _sleep(10);
- system("cls");
- }
- system("cls");
- cout<<"比賽結束";
- cout<<"由"<<n[win]<<"先馳得點\n";
- cout<<"------------------------------------------------------------|終點"<<endl;
- for(int i=0;i<=h[0];i++)
- cout<<" ";
- cout<<"▲"<<endl;
- for(int i=0;i<=h[1];i++)
- cout<<" ";
- cout<<"◆"<<endl;
- for(int i=0;i<=h[2];i++)
- cout<<" ";
- cout<<"★"<<endl;
- for(int i=0;i<=h[3];i++)
- cout<<" ";
- cout<<"●"<<endl;
- system("pause");
- system("cls");
- goto re;
- return 0;
- }
複製代碼 |