本帖最後由 歐柏罕 於 2017-10-3 19:20 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- re1:
- int a=0, b=0, c=0, d=0, r=0; //四匹馬 和 隨機產生的步數
- system("cls");
- cout<<"「好事成雙」賽馬場"<<endl;
- cout<<"------------------------------------------------------------------------| 終點"<<endl;
- cout<<"◆"<<endl;
- cout<<"★"<<endl;
- cout<<"▲"<<endl;
- cout<<"●"<<endl;
- system("pause");
- system("cls");//再清除一次
-
- while(a!=75 && b!=75 && c!=75 && d!=75) //當到達終點(75)的時候跳離while迴圈
- {
- r=rand()%4; //產生0~3之隨機亂數
- if(r==0)
- a++; //a=a+1
-
- cout<<"比賽進行中"<<endl; //cout比賽的畫面
- cout<<"------------------------------------------------------------------------| 終點"<<endl;
-
- for(int i=1; i<=a; i++)
- cout<<" "; //前面的空白
- cout<<"◆"<<endl; //這匹馬: 空白+空白+....+ "◆"
- system("cls");
- }
-
- }
複製代碼 |