返回列表 發帖
本帖最後由 戴安利 於 2018-12-8 17:32 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int a=0, b=0, c=0, d=0, r;
  7.    cout<<"+++好事成雙->賽馬場+++"<<endl;
  8.    cout<<"-------------------------------------------|終點"<<endl;
  9.    cout<<"◆"<<endl;
  10.    cout<<"★"<<endl;
  11.    cout<<"▲"<<endl;
  12.    cout<<"●"<<endl;
  13.    system("pause");
  14.    system("cls");
  15.    srand(time(NULL));
  16.    
  17.    while(a!=20 && b!=20 && c!=20 && d!=20)
  18.    {
  19.       cout<<"賽馬進行中..."<<endl;
  20.       cout<<"-------------------------------------------|終點"<<endl;
  21.         r = rand()%4+1;
  22.         if(r==1)
  23.            a++;
  24.         if(r==2)
  25.            b++;
  26.         if(r==3)
  27.            c++;
  28.         if(r==4)
  29.            d++;   
  30.       
  31.        for(int i=0;i<=a;i++)
  32.           cout<<"  ";
  33.        cout<<"◆"<<endl;
  34.        a++;
  35.        for(int i=0;i<=b;i++)
  36.           cout<<"  ";
  37.        cout<<"★"<<endl;
  38.        b++;
  39.        for(int i=0;i<=c;i++)
  40.           cout<<"  ";
  41.        cout<<"▲"<<endl;
  42.        c++;  
  43.        for(int i=0;i<=d;i++)
  44.           cout<<"  ";
  45.        cout<<"●"<<endl;
  46.        d++;
  47.        system("cls");
  48.       
  49.    }
  50.     cout<<"賽馬結束..."<<endl;
  51.     cout<<"-------------------------------------------|終點"<<endl;
  52.        for(int i=0;i<=a;i++)
  53.           cout<<"  ";
  54.        cout<<"◆"<<endl;
  55.        a++;
  56.        for(int i=0;i<=b;i++)
  57.           cout<<"  ";
  58.        cout<<"★"<<endl;
  59.        b++;
  60.        for(int i=0;i<=c;i++)
  61.           cout<<"  ";
  62.        cout<<"▲"<<endl;
  63.        c++;  
  64.        for(int i=0;i<=d;i++)
  65.           cout<<"  ";
  66.        cout<<"●"<<endl;
  67.        d++;
  68. system("pause");
  69. return 0;
  70. }
複製代碼

TOP

返回列表