本帖最後由 陳品肇 於 2019-4-20 14:37 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- re:
- int a=0,b=0,c=0,d=0,r; //r 我隨機挑到馬匹
- cout<<"「好事成雙」賽馬場"<<endl;
- cout<<"------------------------------------------------------------------------| 終點"<<endl;
- cout<<"◆"<<endl;
- cout<<"★"<<endl;
- cout<<"▲"<<endl;
- cout<<"●"<<endl;
- system("pause");
- system("cls"); //清空畫面
- srand(time(NULL)); //撒亂樹種子
-
- while(a!=70 && b!=70 && c!=70&& d!=70) //判斷四隻馬只要有一隻到終點就跳離while
- {
- cout<<"賽馬進行中"<<endl;
- cout<<"------------------------------------------------------------------------| 終點"<<endl;
- r = rand()%4+1; //產生1~4亂數 隨機挑馬1~4其中一隻
- if(r==1)
- a++;
- if(r==2)
- b++;
- if(r==3)
- c++;
- if(r==4)
- d++;
-
-
- 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<<"賽馬結束"<<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;
-
- system("pause");
- system("cls");
- goto re;
- system("pause");
- return 0;
- }
複製代碼 |