返回列表 發帖
本帖最後由 張峻瑋 於 2014-4-19 16:31 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int e=1;
  7.     re1:
  8.     int a=0,b=0,c=0,d=0,r;
  9.     system("cls");   
  10.     cout<<"$ 888賽馬場 第"<<e<<"局 $"<<endl;
  11.     cout<<"--------------------------------------------------------------------------│"<<endl;     
  12.     cout<<"◢1◤"<<endl;
  13.     cout<<"◢2◤"<<endl;
  14.     cout<<"◢3◤"<<endl;
  15.     cout<<"◢4◤"<<endl;
  16.    
  17.     system("pause");
  18.     system("cls");
  19.     srand(time(NULL));
  20.     while(a!=75 && b!=75 && c!=75 && d!=75)
  21.     {
  22.         r=rand()%4;
  23.         if(r==0)
  24.             a++;
  25.         else if(r==1)
  26.             b++;
  27.         else if(r==2)
  28.             c++;
  29.         else
  30.             d++;
  31.         cout<<"比賽進行中"<<endl;
  32.         cout<<"--------------------------------------------------------------------------│終點"<<endl;     
  33.         for(int i=1;i<=a;i++)
  34.             cout<<" ";
  35.         cout<<"◢1◤"<<endl;
  36.         for(int i=1;i<=b;i++)
  37.             cout<<" ";
  38.         cout<<"◢2◤"<<endl;
  39.         for(int i=1;i<=c;i++)
  40.             cout<<" ";
  41.         cout<<"◢3◤"<<endl;
  42.         for(int i=1;i<=d;i++)
  43.             cout<<" ";
  44.         cout<<"◢4◤"<<endl;
  45.         system("cls");                                   
  46.     }        
  47.     cout<<"比賽結束!由 ";
  48.     if(a==75)
  49.         cout<<"◢1◤";
  50.     if(b==75)
  51.         cout<<"◢2◤";
  52.     if(c==75)
  53.         cout<<"◢3◤";
  54.     if(d==75)
  55.         cout<<"◢4◤";
  56.     cout<<" 先馳得點"<<endl;   
  57.     cout<<"--------------------------------------------------------------------------│終點"<<endl;            
  58.     for(int i=1;i<=a;i++)
  59.         cout<<" ";
  60.     cout<<"◢1◤"<<endl;
  61.     for(int i=1;i<=b;i++)
  62.         cout<<" ";
  63.     cout<<"◢2◤"<<endl;
  64.     for(int i=1;i<=c;i++)
  65.         cout<<" ";
  66.     cout<<"◢3◤"<<endl;
  67.     for(int i=1;i<=d;i++)
  68.         cout<<" ";
  69.     cout<<"◢4◤"<<endl;
  70.     system("pause");
  71.     e++;
  72.     goto re1;
  73.     system("pause");
  74.     return 0;
  75. }
複製代碼

TOP

返回列表