本帖最後由 張彥承 於 2014-4-19 16:32 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main ()
- {
- int n=0;
- re1:
- int a=0,b=0,c=0,d=0,r;
- system("cls");
- cout<<"天觀馬場 第"<<<<endl;
- cout<<"--------------------------------------------------------------------|終點"<<endl;
- cout<<"○"<<endl;
- cout<<"※"<<endl;
- cout<<"▽"<<endl;
- cout<<"◆"<<endl;
- system("pause");
- system("cls");
- srand(time(NULL));
- while(a!=75 && b!=75 && c!=75 && d!=75)
- {
- r=rand()%4;
- if(r==0)
- a++;
- else if(r==1)
- b++;
- else if(r==2)
- c++;
- else
- d++;
- cout<<"比賽進行中"<<endl;
- e++;
- cout<<"--------------------------------------------------------------------|終點"<<endl;
- for(int i=1;i<=a;i++)
- cout<<" ";
- cout<<"○"<<endl;
- for(int i=1;i<=b;i++)
- cout<<" ";
- cout<<"※"<<endl;
- for(int i=1;i<=c;i++)
- cout<<" ";
- cout<<"▽"<<endl;
- for(int i=1;i<=d;i++)
- cout<<" ";
- cout<<"◆"<<endl;
- system("cls");
- }
- cout<<"比賽結束"<<endl;
- if(75==a)
- cout<<"由"<<" ○"<<"先馳得點"<<endl;
- if(75==b)
- cout<<"由"<<"※ "<<"先馳得點"<<endl;
- if(75==c)
- cout<<"由"<<" ▽"<<"先馳得點"<<endl;
- if(75==d)
- cout<<"由"<<"◆ "<<"先馳得點"<<endl;
- cout<<"--------------------------------------------------------------------|終點"<<endl;
-
- for(int i=1;i<=a;i++)
- cout<<" ";
- cout<<"○"<<endl;
- for(int i=1;i<=b;i++)
- cout<<" ";
- cout<<"※"<<endl;
- for(int i=1;i<=c;i++)
- cout<<" ";
- cout<<"▽"<<endl;
- for(int i=1;i<=d;i++)
- cout<<" ";
- cout<<"◆"<<endl;
-
- system("pause");
- n++;
- goto re1;
-
- system("pause");
- return 0;
- }
複製代碼 |