返回列表 發帖
本帖最後由 李唯銘 於 2024-7-27 16:10 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.     cout<<"「好事成雙」賽馬場"<<endl;
  9.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  10.     cout<<"◆"<<endl;
  11.     cout<<"★"<<endl;
  12.     cout<<"▲"<<endl;
  13.     cout<<"●"<<endl;
  14.     system("pause");
  15.     int a=0, b=0, c=0, d=0;

  16.     while(true){
  17.     system("cls");
  18.     cout<<"比賽中"<<endl;
  19.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;\


  20.     int r=rand()%4;
  21.     if(r==0){
  22.         a++;
  23.     }
  24.     else if(r==1){
  25.         b++;
  26.     }
  27.     else if(r==2){
  28.         c++;
  29.     }
  30.     else if(r==3){
  31.         d++;
  32.     }

  33.     for(int i=1; i<=a; i++){
  34.         cout<<" ";}
  35.     cout<<"◆"<<endl;

  36.     for(int j=1; j<=b; j++){
  37.         cout<<" ";}
  38.     cout<<"★"<<endl;

  39.     for(int k=1; k<=c; k++){
  40.         cout<<" ";}
  41.     cout<<"▲"<<endl;

  42.     for(int l=1; l<=d; l++){
  43.         cout<<" ";}
  44.     cout<<"●"<<endl;
  45.     _sleep(10);
  46.     if((a==73)||(b==73)||(c==73)||(d==73))
  47.         break;
  48.     }
  49.     system("cls");
  50.     cout<<"比賽結束"<<endl;
  51.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  52. for(int i=1; i<=a; i++){
  53.         cout<<" ";}
  54.     cout<<"◆"<<endl;

  55.     for(int j=1; j<=b; j++){
  56.         cout<<" ";}
  57.     cout<<"★"<<endl;

  58.     for(int k=1; k<=c; k++){
  59.         cout<<" ";}
  60.     cout<<"▲"<<endl;

  61.     for(int l=1; l<=d; l++){
  62.         cout<<" ";}
  63.     cout<<"●"<<endl;
  64.     system("pause");
  65.     return 0;
  66. }
複製代碼

TOP

返回列表