本帖最後由 周雍程 於 2014-4-25 20:26 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
-
- int e=1;
- re1:
- int a=0, b=0, c=0, d=0, r;
- system("cls");
- cout<<"$賺大錢賽馬場$ 第"<<e<<"局"<<endl;
- cout<<"------------------------------------------------------------------------│終點"<<endl;
- cout<<"◢ 1▋"<<endl;
- cout<<"◢ 2▋"<<endl;
- cout<<"◢ 3▋"<<endl;
- cout<<"◢ 4▋"<<endl;
- system("pause");
- system("cls");
- srand(time(NULL));
- while(a!=73 && b!=73 && c!=73 && d!=73)
- {
- r=rand()%4;
- if(r==0)
- a++;
- else if(r==1)
- b++;
- else if(r==2)
- c++;
- else
- d++;
- cout<<"比賽進行中"<<endl;
- cout<<"------------------------------------------------------------------------│終點"<<endl;
- for(int i=1; i<=a; i++)
- cout<<" ";
- cout<<"◢ 1▋"<<endl;
- for(int i=1; i<=b; i++)
- cout<<" ";
- cout<<"◢ 2▋"<<endl;
- for(int i=1; i<=c; i++)
- cout<<" ";
- cout<<"◢ 3▋"<<endl;
- for(int i=1; i<=d; i++)
- cout<<" ";
- cout<<"◢ 4▋"<<endl;
- system("cls");
- }
- cout<<"比賽結束"<<endl;
- if(a==73)
- cout<<"由"<<"◢ 1▋"<<"先馳得點"<<endl;
- if(b==73)
- cout<<"由"<<"◢ 2▋"<<"先馳得點"<<endl;
- if(c==73)
- cout<<"由"<<"◢ 3▋"<<"先馳得點"<<endl;
- if(d==73)
- cout<<"由"<<"◢ 4▋"<<"先馳得點"<<endl;
- cout<<"------------------------------------------------------------------------│終點"<<endl;
- for(int i=1; i<=a; i++)
- cout<<" ";
- cout<<"◢ 1▋"<<endl;
- for(int i=1; i<=b; i++)
- cout<<" ";
- cout<<"◢ 2▋"<<endl;
- for(int i=1; i<=c; i++)
- cout<<" ";
- cout<<"◢ 3▋"<<endl;
- for(int i=1; i<=d; i++)
- cout<<" ";
- cout<<"◢ 4▋"<<endl;
- system("pause");
- e++;
- goto re1;
- system("pause");
- return 0;
- }
複製代碼 |