返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main(){
  6.     int z=1;
  7.     int x,y;

  8. re1:
  9.     int n[]={0,0,0,0};
  10.     system("cls");
  11. srand(time(NULL));
  12. cout<<"「好事成雙」賽馬程式"<<endl;
  13. cout<<"---------------------------------------------------------------|終點"<<endl;
  14. cout<<"◆"<<endl;
  15. cout<<"★"<<endl;
  16. cout<<"▲"<<endl;
  17. cout<<"●"<<endl;
  18.    system("pause");
  19. re:
  20.     if(n[0]<70&&n[1]<70&&n[2]<70&&n[3]<73){
  21. system("cls");
  22. cout<<"比賽進行中 第"<<z<<"局"<<endl;
  23. cout<<"-------------------------------------------------------------------|終點"<<endl;
  24. int speed=0.01;
  25.     x=rand()%4;
  26.     n[x]++;

  27.     for(int i=1;i<=n[0];i++)
  28.        cout<<" ";
  29.        cout<<"◆"<<endl;
  30.     for(int i=1;i<=n[1];i++)
  31.        cout<<" ";
  32.        cout<<"★"<<endl;
  33.     for(int i=1;i<=n[2];i++)
  34.        cout<<" ";
  35.        cout<<"▲"<<endl;
  36.     for(int i=1;i<=n[3];i++)
  37.        cout<<" ";
  38.        cout<<"●"<<endl;
  39.     _sleep(speed);
  40. goto re;
  41. }
  42. else{
  43.     system("cls");
  44.     if(n[0]>=70)
  45.         cout<<"由◆勝出,";
  46.     else if(n[1]>=70)
  47.         cout<<"由★勝出,";
  48.     else if(n[2]>=70)
  49.         cout<<"由▲勝出,";
  50.     else if(n[3]>=70)
  51.         cout<<"由●勝出,";
  52.     cout<<"比賽結束!"<<endl;
  53.     cout<<"-------------------------------------------------------------------|終點"<<endl;
  54.     for(int i=1;i<=n[0];i++)
  55.         cout<<" ";
  56.         cout<<"◆"<<endl;
  57.      for(int i=1;i<=n[1];i++)
  58.         cout<<" ";
  59.         cout<<"★"<<endl;
  60.     for(int i=1;i<=n[2];i++)
  61.         cout<<" ";
  62.         cout<<"▲"<<endl;
  63.     for(int i=1;i<=n[3];i++)
  64.         cout<<" ";
  65.         cout<<"●"<<endl;
  66.         }


  67. z++;
  68. system("pause");
  69. goto re1;
  70. return 0;
  71. }
複製代碼

TOP

返回列表