返回列表 發帖
本帖最後由 施伯叡 於 2014-4-19 16:29 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n=1;
  7.     re:
  8.     int a=0, b=0, c=0, d=0, r ;
  9.     system("cls");
  10.     cout<<"「穩賺不賠」賽馬場  <第"<<n<<"場>"<<endl;
  11.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  12.     cout<<"★1☆"<<endl;
  13.     cout<<"☆2★"<<endl;
  14.     cout<<"★3☆"<<endl;
  15.     cout<<"☆4★"<<endl;
  16.     system("pause");
  17.     system("cls");
  18.     srand(time(NULL));
  19.     while(a!=70 && b!=70 && c!=70 && b!=70)
  20.     {
  21.         r=rand()%4;
  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<<"★1☆"<<endl;
  35.         for(int i=1; i<=b; i++)
  36.            cout<<" ";
  37.         cout<<"☆2★"<<endl;
  38.         for(int i=1; i<=c; i++)
  39.            cout<<" ";
  40.         cout<<"★3☆"<<endl;
  41.         for(int i=1; i<=d; i++)
  42.            cout<<" ";
  43.         cout<<"☆4★"<<endl;   
  44.         system("cls");   
  45.     }   
  46.     if(a>b && a>c && a>d)
  47.          cout<<"比賽結束,由1號選手先馳得點"<<endl;
  48.     if(b>a && b>c && b>d)
  49.          cout<<"比賽結束,由2號選手先馳得點"<<endl;
  50.     if(c>a && c>b && c>d)
  51.          cout<<"比賽結束,由3號選手先馳得點"<<endl;
  52.     if(d>a && d>b && d>c)
  53.          cout<<"比賽結束,由4號選手先馳得點"<<endl;
  54.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  55.     for(int i=1; i<=a; i++)
  56.         cout<<" ";
  57.     cout<<"★1☆"<<endl;
  58.     for(int i=1; i<=b; i++)
  59.         cout<<" ";
  60.     cout<<"☆2★"<<endl;
  61.     for(int i=1; i<=c; i++)
  62.         cout<<" ";
  63.     cout<<"★3☆"<<endl;
  64.     for(int i=1; i<=d; i++)
  65.         cout<<" ";
  66.     cout<<"☆4★"<<endl;
  67.     system("pause");
  68.     n++;
  69.     goto re;
  70.     system("pause");
  71.     return 0;   
  72. }
複製代碼

TOP

返回列表