- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int x=1;
- re:
- int a=0 ,b=0 ,c=0 ,d=0 ,z ;
- srand(time(NULL));
- cout<<"第"<<x<<"場[萬事如意]賽馬場"<<endl;
- cout<<"------------------------------------------------------------------------| 終點"<<endl;
- cout<<"◆"<<endl;
- cout<<"★"<<endl;
- cout<<"㊣"<<endl;
- cout<<"▼"<<endl;
- system("pause");
- while(a!=75 && b!=75 && c!=75 && d!=75)
- {
- cout<<"比賽中"<<endl;
- cout<<"------------------------------------------------------------------------| 終點"<<endl;
- z=rand()%4+1;
- if(z==1)
- {
- a+=3;
- }
- if(z==2)
- {
- b+=3;
- }
- if(z==3)
- {
- c+=3;
- }
- if(z==4)
- {
- d+=3;
- }
- for(int i=0; i<=a; i++)
- {
- cout<<" ";
- }
- cout<<"◆"<<endl;
-
- for(int i=0; i<=b; i++)
- {
- cout<<" ";
- }
- cout<<"★"<<endl;
-
- for(int i=0; i<=c; i++)
- {
- cout<<" ";
- }
- cout<<"㊣"<<endl;
-
- for(int i=0; i<=d; i++)
- {
- cout<<" ";
- }
- cout<<"▼"<<endl;
-
- system("cls");
- }
- cout<<"第"<<x<<"場比賽結束"<<endl;
- cout<<"------------------------------------------------------------------------| 終點"<<endl;
- for(int i=0; i<=a; i++)
- {
- cout<<" ";
- }
- cout<<"◆"<<endl;
-
- for(int i=0; i<=b; i++)
- {
- cout<<" ";
- }
- cout<<"★"<<endl;
-
- for(int i=0; i<=c; i++)
- {
- cout<<" ";
- }
- cout<<"㊣"<<endl;
-
- for(int i=0; i<=d; i++)
- {
- cout<<" ";
- }
- cout<<"▼"<<endl;
-
- cout<<"按任意鍵進行下一場比賽"<<endl;
- system("pause");
- system("cls");
- x++;
- goto re;
- system("pause");
- return 0;
- }
複製代碼 |