返回列表 發帖

賽馬程式 (二)

本帖最後由 tonyh 於 2016-10-15 11:54 編輯

使畫面動起來



  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     re:
  8.     system("cls");
  9.     string n[]={"◆","★","▲","●"};
  10.     int s[]={0,0,0,0};
  11.     int r;
  12.     cout<<"「好事成雙」賽馬場"<<endl;
  13.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  14.     for(int i=0; i<4; i++)
  15.         cout<<n[i]<<endl;
  16.     system("pause");
  17.     while(true)
  18.     {
  19.         cout<<"比賽進行中"<<endl;
  20.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  21.         r=rand()%4;   //0~3
  22.         s[r]++;
  23.         for(int i=0; i<4; i++)
  24.         {
  25.             for(int j=0; j<s[i]; j++)
  26.                 cout<<" ";
  27.             cout<<n[i]<<endl;     
  28.         }
  29.         _sleep(10);
  30.         system("cls");
  31.         if(s[r]==76)
  32.             break;
  33.     }
  34.     cout<<"比賽結果"<<endl;
  35.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  36.     for(int i=0; i<4; i++)
  37.     {
  38.         for(int j=0; j<s[i]; j++)
  39.             cout<<" ";
  40.         cout<<n[i]<<endl;     
  41.     }
  42.     system("pause");
  43.     goto re;
  44.     return 0;
  45. }
複製代碼
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     re:
  8.     system("cls");
  9.     int a=0,b=0,c=0,d=0;
  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.     while(a!=76 && b!=76 && c!=76 && d!=76)
  19.     {
  20.         int r=rand()%4;   //0~3
  21.         if(r==0)
  22.             a++;
  23.         else if(r==1)
  24.             b++;
  25.         else if(r==2)
  26.             c++;
  27.         else
  28.             d++;
  29.         cout<<"比賽進行中"<<endl;
  30.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  31.         for(int i=0; i<a; i++)
  32.             cout<<" ";
  33.         cout<<"◆"<<endl;   
  34.         for(int i=0; i<b; i++)
  35.             cout<<" ";
  36.         cout<<"★"<<endl;
  37.         for(int i=0; i<c; i++)
  38.             cout<<" ";
  39.         cout<<"▲"<<endl;
  40.         for(int i=0; i<d; i++)
  41.             cout<<" ";
  42.         cout<<"●"<<endl;     
  43.         _sleep(10);
  44.         system("cls");
  45.     }
  46.     cout<<"比賽結束"<<endl;
  47.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  48.     for(int i=0; i<a; i++)
  49.         cout<<" ";
  50.     cout<<"◆"<<endl;   
  51.     for(int i=0; i<b; i++)
  52.         cout<<" ";
  53.     cout<<"★"<<endl;
  54.     for(int i=0; i<c; i++)
  55.         cout<<" ";
  56.     cout<<"▲"<<endl;
  57.     for(int i=0; i<d; i++)
  58.         cout<<" ";
  59.     cout<<"●"<<endl;
  60.     system("pause");
  61.     goto re;
  62.     return 0;
  63. }
複製代碼

本帖最後由 黃茂勛 於 2016-10-15 11:42 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     re:
  8.     system("cls");                  
  9.     string n[]={"◆","★","▲","●"};
  10.     int s[]={0,0,0,0};
  11.     cout<<"「場賽馬賽場馬」賽馬場"<<endl;
  12.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  13.     for(int i=0; i<4; i++)
  14.         cout<<n[i]<<endl;
  15.     system("pause");
  16.     while(true)
  17.     {     
  18.          int r=rand()%4;
  19.          s[r]++;
  20.          cout<<"比賽進行中"<<endl;
  21.          cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  22.          for(int i=0; i<4; i++)
  23.          {
  24.              for(int j=0; j<s[i]; j++)
  25.                  cout<<" ";
  26.              cout<<n[i]<<endl;   
  27.          }  
  28.          _sleep(10);
  29.          system("cls");  
  30.          if(s[r]==76)
  31.             break;
  32.     }
  33.     cout<<"比賽結束"<<endl;
  34.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  35.     for(int i=0; i<4; i++)
  36.     {
  37.         for(int j=0; j<s[i]; j++)
  38.             cout<<" ";
  39.         cout<<n[i]<<endl;   
  40.     }
  41.     system("pause");
  42.     goto re;
  43.     return 0;   
  44. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     re:
  8.     system("cls");
  9.     string n[]={"◆","★","▲","●"};
  10.     int s[]={0,0,0,0};
  11.     int r;
  12.     cout<<"「87878787878787878787878787」賽馬場"<<endl;
  13.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  14.     for(int i=0; i<4; i++)
  15.         cout<<n[i]<<endl;
  16.     system("pause");
  17.     while(true)
  18.     {
  19.         cout<<"比賽進行中"<<endl;
  20.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  21.         r=rand()%4;   
  22.         s[r]++;
  23.         for(int i=0; i<4; i++)
  24.         {
  25.             for(int j=0; j<s[i]; j++)
  26.                 cout<<" ";
  27.             cout<<n[i]<<endl;     
  28.         }
  29.         _sleep(10);
  30.         system("cls");
  31.         if(s[r]==76)
  32.             break;
  33.     }
  34.     cout<<"比賽結果"<<endl;
  35.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  36.     for(int i=0; i<4; i++)
  37.     {
  38.         for(int j=0; j<s[i]; j++)
  39.             cout<<" ";
  40.         cout<<n[i]<<endl;     
  41.     }
  42.     system("pause");
  43.     goto re;
  44.     return 0;
  45. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5.     srand(time(NULL));
  6.     re:
  7.     system("cls");
  8.     string n[]={"◆","★","▲","●","幹"};
  9.     int s[]={0,0,0,0,0};
  10.     int r;
  11.     cout<<"「nfjklheltgj;akerj」賽馬場"<<endl;
  12.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  13.     for(int i=0; i<=4; i++)
  14.         cout<<n[i]<<endl;
  15.     system("pause");
  16.     system("cls");
  17.     race:
  18.     cout<<"比賽進行中"<<endl;
  19.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  20.     r=rand()%5;
  21.     s[r]++;
  22.     for(int i=0; i<=4; i++){
  23.         for(int j=0; j<=s[i]; j++)
  24.             cout<<" ";
  25.         cout<<n[i]<<endl;        
  26.     }
  27.     if(s[r]==75)
  28.         goto finish;
  29.     _sleep(10);
  30.     system("cls");
  31.     goto race;
  32.     finish:
  33.     system("pause");
  34.     goto re;
  35.     return 0;
  36. }
複製代碼
我是眾神之王XXX  I love you
0000000000

TOP

本帖最後由 陳泓瑜 於 2016-10-29 11:11 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.     re:
  9.     system("cls");
  10.     int a=0,b=0,c=0,d=0;
  11.     cout<<"狗屁'賽'馬場"<<endl;
  12.     cout<<"-------------------------------------------------------------------------|FINISH";
  13.     cout<<"1"<<endl;
  14.     cout<<"2"<<endl;
  15.     cout<<"3"<<endl;
  16.     cout<<"4"<<endl;
  17.     system("pause");
  18.     system("cls");
  19.     while(a!=74 && b!=74 && c!=74 && d!=74)
  20.     {
  21.         int 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<<"-------------------------------------------------------------------------|FINISH";
  32.         for(int i=0; i<a; i++)
  33.             cout<<"_";
  34.         cout<<"1"<<endl;   
  35.         for(int i=0; i<b; i++)
  36.             cout<<"_";
  37.         cout<<"2"<<endl;
  38.         for(int i=0; i<c; i++)
  39.             cout<<"_";
  40.         cout<<"3"<<endl;
  41.         for(int i=0; i<d; i++)
  42.             cout<<"_";
  43.         cout<<"4"<<endl;     
  44.         system("cls");
  45.     }
  46.    
  47.        cout<<"GAME OVER!!"<<endl;
  48.        cout<<"-------------------------------------------------------------------------|FINISH";
  49.        for(int i=0; i<a; i++)
  50.             cout<<"_";
  51.         cout<<"1"<<endl;   
  52.         for(int i=0; i<b; i++)
  53.             cout<<"_";
  54.         cout<<"2"<<endl;
  55.         for(int i=0; i<c; i++)
  56.             cout<<"_";
  57.         cout<<"3"<<endl;
  58.         for(int i=0; i<d; i++)
  59.             cout<<"_";
  60.         cout<<"4"<<endl;
  61.      
  62.     system("pause");
  63.     goto re;
  64.     return 0;
  65. }
複製代碼

TOP

返回列表