返回列表 發帖

賽馬程式 (二)

本帖最後由 陳品肇 於 2018-12-8 17:19 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int a=0,b=0,c=0,d=0,r; //r 我隨機挑到馬匹
  8.     cout<<"「好事成雙」賽馬場"<<endl;
  9.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  10.     cout<<"◆"<<endl;
  11.     cout<<"★"<<endl;
  12.     cout<<"▲"<<endl;
  13.     cout<<"●"<<endl;
  14.     system("pause");
  15.     system("cls"); //清空畫面
  16.     srand(time(NULL)); //撒亂樹種子
  17.    
  18.     while(a!=70 && b!=70 && c!=70&& d!=70) //判斷四隻馬只要有一隻到終點就跳離while
  19.     {
  20.           cout<<"賽馬進行中"<<endl;
  21.           cout<<"------------------------------------------------------------------------| 終點"<<endl;         
  22.             r = rand()%4+1;  //產生1~4亂數  隨機挑馬1~4其中一隻
  23.             if(r==1)
  24.                 a++;  
  25.             if(r==2)
  26.                 b++;  
  27.             if(r==3)
  28.                 c++;  
  29.             if(r==4)
  30.                 d++;  
  31.                
  32.                  
  33.              for(int i=0;i<=a;i++)  //第一匹馬前進
  34.              {
  35.                   cout<<" ";
  36.              }
  37.              cout<<"◆"<<endl;
  38.              for(int i=0;i<=b;i++)  //第二匹馬前進
  39.              {
  40.                   cout<<" ";
  41.              }
  42.              cout<<"★"<<endl;
  43.              for(int i=0;i<=c;i++)  //第三匹馬前進
  44.              {
  45.                   cout<<" ";
  46.              }
  47.              cout<<"▲"<<endl;
  48.              for(int i=0;i<=d;i++)  //第四匹馬前進
  49.              {     
  50.                    cout<<" ";
  51.              }
  52.              cout<<"●"<<endl;
  53.              system("cls"); //清空畫面
  54.     }
  55.    
  56.      cout<<"賽馬結束"<<endl;
  57.      cout<<"------------------------------------------------------------------------| 終點"<<endl;      
  58.      for(int i=0;i<=a;i++)  //第一匹馬最後的位子
  59.      {      
  60.              cout<<" ";
  61.      }
  62.      cout<<"◆"<<endl;
  63.      for(int i=0;i<=b;i++)  //第二匹馬最後的位子
  64.      {        
  65.               cout<<" ";
  66.      }
  67.      cout<<"★"<<endl;
  68.      for(int i=0;i<=c;i++)  //第三匹馬最後的位子
  69.      {
  70.               cout<<" ";
  71.      }
  72.      cout<<"▲"<<endl;
  73.      for(int i=0;i<=d;i++)  //第四匹馬最後的位子
  74.      {     
  75.               cout<<" ";
  76.      }
  77.      cout<<"●"<<endl;
  78.    
  79.     system("pause");
  80.     system("cls");
  81.     goto re;
  82.     system("pause");
  83.     return 0;   
  84. }
複製代碼

返回列表