返回列表 發帖
本帖最後由 張彥承 於 2014-4-19 16:32 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6. int n=0;
  7.   re1:  
  8.   int a=0,b=0,c=0,d=0,r;
  9. system("cls");  
  10. cout<<"天觀馬場   第"<<<<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;
  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.       e++;   
  32.   cout<<"--------------------------------------------------------------------|終點"<<endl;
  33.   for(int i=1;i<=a;i++)
  34.       cout<<" ";
  35.   cout<<"○"<<endl;
  36.   for(int i=1;i<=b;i++)
  37.       cout<<" ";
  38.   cout<<"※"<<endl;
  39.   for(int i=1;i<=c;i++)
  40.       cout<<" ";
  41.   cout<<"▽"<<endl;
  42.   for(int i=1;i<=d;i++)
  43.       cout<<" ";
  44.   cout<<"◆"<<endl;
  45.   system("cls");
  46. }
  47. cout<<"比賽結束"<<endl;
  48.      if(75==a)
  49.   cout<<"由"<<" ○"<<"先馳得點"<<endl;
  50.   if(75==b)
  51.   cout<<"由"<<"※ "<<"先馳得點"<<endl;
  52.   if(75==c)
  53.   cout<<"由"<<" ▽"<<"先馳得點"<<endl;
  54.   if(75==d)
  55.   cout<<"由"<<"◆ "<<"先馳得點"<<endl;
  56. cout<<"--------------------------------------------------------------------|終點"<<endl;
  57.   

  58.   for(int i=1;i<=a;i++)
  59.   cout<<" ";
  60. cout<<"○"<<endl;
  61.   for(int i=1;i<=b;i++)
  62.   cout<<" ";
  63. cout<<"※"<<endl;
  64.   for(int i=1;i<=c;i++)
  65.   cout<<" ";
  66. cout<<"▽"<<endl;
  67.   for(int i=1;i<=d;i++)
  68.   cout<<" ";
  69. cout<<"◆"<<endl;

  70. system("pause");
  71. n++;
  72. goto re1;                  

  73. system("pause");   
  74. return 0;   
  75. }
複製代碼

TOP

返回列表