- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main(){
- srand(time(NULL));
- re:
- system("cls");
- int r=0; //0~3
- int s[]={0,0,0,0}; //每匹馬左側的空白數
- cout<<"好事成雙賽馬場"<<endl;
- cout<<"--------------------------------------------------------------------|終點"<<endl;
- cout<<"◆"<<endl;
- cout<<"★"<<endl;
- cout<<"▲"<<endl;
- cout<<"●"<<endl;
- system("pause");
- while(s[r]<70){ //只要有任何一匹馬到達終點,迴圈就會停下來
- r=rand()%4; //r=0~3
- s[r]++;
- system("cls");
- cout<<"比賽進行中"<<endl;
- cout<<"--------------------------------------------------------------------|終點"<<endl;
- for(int i=0;i<s[0];i++)
- cout<<" ";
- cout<<"◆"<<endl;
- for(int i=0;i<s[1];i++)
- cout<<" ";
- cout<<"★"<<endl;
- for(int i=0;i<s[2];i++)
- cout<<" ";
- cout<<"▲"<<endl;
- for(int i=0;i<s[3];i++)
- cout<<" ";
- cout<<"●"<<endl;
- _sleep(10);
- }
- system("cls");
- cout<<"比賽結束"<<endl;
- cout<<"--------------------------------------------------------------------|終點"<<endl;
- for(int i=0;i<s[0];i++)
- cout<<" ";
- cout<<"◆"<<endl;
- for(int i=0;i<s[1];i++)
- cout<<" ";
- cout<<"★"<<endl;
- for(int i=0;i<s[2];i++)
- cout<<" ";
- cout<<"▲"<<endl;
- for(int i=0;i<s[3];i++)
- cout<<" ";
- cout<<"●"<<endl;
- system("pause");
- goto re;
- return 0;
- }
複製代碼 |