返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=1;
  7.     re:
  8.     int a=0 ,b=0 ,c=0 ,d=0 ,z ;
  9.     srand(time(NULL));
  10.     cout<<"第"<<x<<"場[萬事如意]賽馬場"<<endl;
  11.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  12.     cout<<"◆"<<endl;
  13.     cout<<"★"<<endl;
  14.     cout<<"㊣"<<endl;
  15.     cout<<"▼"<<endl;
  16.     system("pause");
  17.     while(a!=75 && b!=75 && c!=75 && d!=75)
  18.     {
  19.                 cout<<"比賽中"<<endl;
  20.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  21.         z=rand()%4+1;
  22.         if(z==1)
  23.         {
  24.             a+=3;
  25.         }
  26.         if(z==2)
  27.         {
  28.             b+=3;
  29.         }
  30.         if(z==3)
  31.         {
  32.             c+=3;
  33.         }
  34.         if(z==4)
  35.         {
  36.             d+=3;
  37.         }
  38.         for(int i=0; i<=a; i++)
  39.         {
  40.             cout<<" ";
  41.         }
  42.         cout<<"◆"<<endl;
  43.         
  44.         for(int i=0; i<=b; i++)
  45.         {
  46.             cout<<" ";
  47.         }
  48.         cout<<"★"<<endl;
  49.         
  50.         for(int i=0; i<=c; i++)
  51.         {
  52.             cout<<" ";
  53.         }
  54.         cout<<"㊣"<<endl;
  55.         
  56.         for(int i=0; i<=d; i++)
  57.         {
  58.             cout<<" ";
  59.         }
  60.         cout<<"▼"<<endl;
  61.         
  62.         system("cls");
  63.     }
  64.     cout<<"第"<<x<<"場比賽結束"<<endl;
  65.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  66.      for(int i=0; i<=a; i++)
  67.         {
  68.             cout<<" ";
  69.         }
  70.         cout<<"◆"<<endl;
  71.         
  72.         for(int i=0; i<=b; i++)
  73.         {
  74.             cout<<" ";
  75.         }
  76.         cout<<"★"<<endl;
  77.         
  78.         for(int i=0; i<=c; i++)
  79.         {
  80.             cout<<" ";
  81.         }
  82.         cout<<"㊣"<<endl;
  83.         
  84.         for(int i=0; i<=d; i++)
  85.         {
  86.             cout<<" ";
  87.         }
  88.         cout<<"▼"<<endl;
  89.         
  90.         cout<<"按任意鍵進行下一場比賽"<<endl;
  91.         system("pause");
  92.         system("cls");
  93.         x++;
  94.         goto re;
  95.     system("pause");
  96.     return 0;
  97. }
複製代碼

TOP

返回列表