返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     re1:
  7.     int a=0, b=0, c=0, d=0, 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.     while(a!=75 && b!=75 && c!=75 && d!=75)
  18.     {
  19.           r=rand()%4;
  20.           if(r==0)
  21.               a++;
  22.           else if(r==1)
  23.               b++;
  24.           else if(r==2)
  25.               c++;
  26.           else
  27.               d++;
  28.           cout<<"比賽進行中"<<endl;
  29.           cout<<"------------------------------------------------------------------------| 終點"<<endl;
  30.           for(int i=1; i<=a; i++)
  31.               cout<<" ";
  32.           cout<<"@"<<endl;
  33.           for(int i=1; i<=b; i++)
  34.               cout<<" ";
  35.           cout<<"#"<<endl;
  36.           for(int i=1; i<=c; i++)
  37.               cout<<" ";
  38.           cout<<"!"<<endl;
  39.           for(int i=1; i<=d; i++)
  40.               cout<<" ";
  41.           cout<<"%"<<endl;
  42.           system("cls");               
  43.     }     
  44.      cout<<"比賽結束"<<endl;
  45.     {
  46.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  47.     for(int i=1; i<=a; i++)
  48.         cout<<" ";
  49.     cout<<"@"<<endl;
  50.     for(int i=1; i<=b; i++)
  51.         cout<<" ";
  52.     cout<<"#"<<endl;
  53.     for(int i=1; i<=c; i++)
  54.         cout<<" ";
  55.     cout<<"!"<<endl;
  56.     for(int i=1; i<=d; i++)
  57.         cout<<" ";
  58.     cout<<"%"<<endl;
  59.     system("pause");
  60.     goto re1;
  61.     system("pause");
  62.     return 0;   
  63.     }   
  64. }
複製代碼

TOP

返回列表