本帖最後由 李唯銘 於 2024-7-27 16:10 編輯
- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- srand(time(NULL));
- cout<<"「好事成雙」賽馬場"<<endl;
- cout<<"-------------------------------------------------------------------------| 終點"<<endl;
- cout<<"◆"<<endl;
- cout<<"★"<<endl;
- cout<<"▲"<<endl;
- cout<<"●"<<endl;
- system("pause");
- int a=0, b=0, c=0, d=0;
- while(true){
- system("cls");
- cout<<"比賽中"<<endl;
- cout<<"-------------------------------------------------------------------------| 終點"<<endl;\
- int r=rand()%4;
- if(r==0){
- a++;
- }
- else if(r==1){
- b++;
- }
- else if(r==2){
- c++;
- }
- else if(r==3){
- d++;
- }
- for(int i=1; i<=a; i++){
- cout<<" ";}
- cout<<"◆"<<endl;
- for(int j=1; j<=b; j++){
- cout<<" ";}
- cout<<"★"<<endl;
- for(int k=1; k<=c; k++){
- cout<<" ";}
- cout<<"▲"<<endl;
- for(int l=1; l<=d; l++){
- cout<<" ";}
- cout<<"●"<<endl;
- _sleep(10);
- if((a==73)||(b==73)||(c==73)||(d==73))
- break;
- }
- system("cls");
- cout<<"比賽結束"<<endl;
- cout<<"-------------------------------------------------------------------------| 終點"<<endl;
- for(int i=1; i<=a; i++){
- cout<<" ";}
- cout<<"◆"<<endl;
- for(int j=1; j<=b; j++){
- cout<<" ";}
- cout<<"★"<<endl;
- for(int k=1; k<=c; k++){
- cout<<" ";}
- cout<<"▲"<<endl;
- for(int l=1; l<=d; l++){
- cout<<" ";}
- cout<<"●"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |