返回列表 發帖

[作業] 賽馬程式 (三)

本帖最後由 tonyh 於 2014-4-19 16:28 編輯

1. 在比賽首頁顯示第幾局
2. 在比賽結束頁顯示哪一位選手勝出



  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n=1;
  7.     re1:
  8.     int a=0, b=0, c=0, d=0, r;
  9.     system("cls");
  10.     cout<<"「好事成雙」賽馬場 第 "<<n<<" 局"<<endl;
  11.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  12.     cout<<"◆"<<endl;
  13.     cout<<"★"<<endl;
  14.     cout<<"▲"<<endl;
  15.     cout<<"●"<<endl;
  16.     system("pause");
  17.     system("cls");
  18.     srand(time(NULL));
  19.     while(a!=75 && b!=75 && c!=75 && d!=75)
  20.     {
  21.         r=rand()%4;   //產生0~3之隨機亂數
  22.         if(r==0)
  23.             a++;
  24.         else if(r==1)
  25.             b++;
  26.         else if(r==2)
  27.             c++;
  28.         else
  29.             d++;
  30.         cout<<"比賽進行中"<<endl;
  31.         cout<<"------------------------------------------------------------------------| 終點"<<endl;
  32.         for(int i=1; i<=a; i++)
  33.             cout<<" ";
  34.         cout<<"◆"<<endl;
  35.         for(int i=1; i<=b; i++)
  36.             cout<<" ";
  37.         cout<<"★"<<endl;
  38.         for(int i=1; i<=c; i++)
  39.             cout<<" ";
  40.         cout<<"▲"<<endl;
  41.         for(int i=1; i<=d; i++)
  42.             cout<<" ";
  43.         cout<<"●"<<endl;   
  44.         system("cls");      
  45.     }
  46.     cout<<"比賽結束! 由 ";
  47.     if(a==75)
  48.         cout<<"◆";
  49.     else if(b==75)
  50.         cout<<"★";
  51.     else if(c==75)
  52.         cout<<"▲";
  53.     else
  54.         cout<<"●";
  55.     cout<<" 先馳得點!"<<endl;
  56.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  57.     for(int i=1; i<=a; i++)
  58.         cout<<" ";
  59.     cout<<"◆"<<endl;
  60.     for(int i=1; i<=b; i++)
  61.         cout<<" ";
  62.     cout<<"★"<<endl;
  63.     for(int i=1; i<=c; i++)
  64.         cout<<" ";
  65.     cout<<"▲"<<endl;
  66.     for(int i=1; i<=d; i++)
  67.         cout<<" ";
  68.     cout<<"●"<<endl;
  69.     system("pause");
  70.     n++;
  71.     goto re1;
  72.     system("pause");
  73.     return 0;   
  74. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

返回列表