返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     n=1;
  8.     re:
  9.     system("cls");
  10.     int a=0, b=0, c=0, d=0;
  11.     srand(time(NULL));
  12.     cout<<"「好事成雙」賽馬場 第"<<n<<"局"<<endl;
  13.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  14.     cout<<"◆"<<endl;
  15.     cout<<"★"<<endl;
  16.     cout<<"▲"<<endl;
  17.     cout<<"●"<<endl;

  18.     system("pause");


  19.     while(true){
  20.     system("cls");
  21.     cout<<"比賽中"<<endl;
  22.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;\


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

  36.     for(int i=1; i<=a; i++){
  37.         cout<<" ";}
  38.     cout<<"◆"<<endl;

  39.     for(int j=1; j<=b; j++){
  40.         cout<<" ";}
  41.     cout<<"★"<<endl;

  42.     for(int k=1; k<=c; k++){
  43.         cout<<" ";}
  44.     cout<<"▲"<<endl;

  45.     for(int l=1; l<=d; l++){
  46.         cout<<" ";}
  47.     cout<<"●"<<endl;
  48.     _sleep(50);
  49.     if((a==73)||(b==73)||(c==73)||(d==73))
  50.         break;
  51.     }
  52.     system("cls");
  53.     if(a==73){
  54.     cout<<"比賽結束,由◆先馳得點"<<endl;
  55.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  56.     }
  57.     if(b==73){
  58.     cout<<"比賽結束,由★先馳得點"<<endl;
  59.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  60.     }
  61.     if(c==73){
  62.     cout<<"比賽結束,由▲先馳得點"<<endl;
  63.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  64.     }
  65.     if(d==73){
  66.     cout<<"比賽結束,由●先馳得點"<<endl;
  67.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  68.     }
  69.     for(int i=1; i<=a; i++){
  70.         cout<<" ";}
  71.     cout<<"◆"<<endl;

  72.     for(int j=1; j<=b; j++){
  73.         cout<<" ";}
  74.     cout<<"★"<<endl;

  75.     for(int k=1; k<=c; k++){
  76.         cout<<" ";}
  77.     cout<<"▲"<<endl;

  78.     for(int l=1; l<=d; l++){
  79.         cout<<" ";}
  80.     cout<<"●"<<endl;
  81.     n++;
  82.     system("pause");
  83.     goto re;
  84.     return 0;
  85. }
複製代碼

TOP

返回列表