返回列表 發帖

賽馬程式 (四)

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<time.h>  
  4. using namespace std;
  5. int main()
  6. {
  7.   int times=1;
  8.   while(true)
  9.   {
  10.     int horse1=0, horse2=0, horse3=0, horse4=0, random=0;
  11.     int balance=0; //錢包
  12.     int option=0; //讓他做選擇  ,ABC => string
  13.     int buyin=0; //輸入的錢
  14.     int bet=0;  //下注
  15.     int player=0; //誰
  16.     while(option == 0 or option ==1) //第一次或是買入
  17.     {
  18.       srand(time(NULL));
  19.       system("cls");
  20.       cout<<"「好事成雙」賽馬場   " << "第 " <<times << "局 "<<endl;
  21.       cout<<"------------------------------------------------------------------------| 終點"<<endl;
  22.       cout<<"◆"<<endl;
  23.       cout<<"★"<<endl;  
  24.       cout<<"▲"<<endl;
  25.       cout<<"●"<<endl;
  26.    
  27.       cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;   
  28.       cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
  29.       cin>>option;
  30.       if(option==1)
  31.       {
  32.           cout<<"買入: ";
  33.           cin>>buyin;
  34.           balance+=buyin;
  35.       }
  36.       else if(option == 2)
  37.       {
  38.          cout<<"下注: ";
  39.          cin>>bet;  
  40.          cout<<endl<<"(1)◆ (2)★ (3)▲ (4)●  請選擇: ";
  41.          cin>>player;
  42.          cout<<"比賽即將開始..."<<endl<<endl;   
  43.       }
  44.       else if(option == 3)
  45.       {
  46.          break;
  47.       }
  48.       system("pause");
  49.       system("cls");
  50.       
  51.       while(horse1!=75 && horse2!=75 && horse3!=75 && horse4!=75)
  52.       {
  53.          
  54.         random=rand()%4;   //產生0~3之隨機亂數
  55.         if(random==0) {
  56.            horse1++;
  57.         }  
  58.         else if(random==1) {
  59.            horse2++;
  60.         }
  61.         else if(random==2) {
  62.            horse3++;
  63.         }
  64.         else if(random==3) {
  65.            horse4++;
  66.         }
  67.         cout<<"比賽進行中"<<endl;
  68.         cout<<"------------------------------------------------------------------------| 終點"<<endl;
  69.       
  70.         for(int i=1; i<=horse1; i++) {
  71.            cout<<" ";
  72.         }   
  73.         cout<<"◆"<<endl;
  74.         
  75.         for(int i=1; i<=horse2; i++) {
  76.            cout<<" ";
  77.         }   
  78.         cout<<"★"<<endl;
  79.         
  80.          for(int i=1; i<=horse3; i++) {
  81.            cout<<" ";
  82.         }   
  83.         cout<<"▲"<<endl;
  84.         
  85.          for(int i=1; i<=horse4; i++) {
  86.            cout<<" ";
  87.         }   
  88.         cout<<"●"<<endl;
  89.         system("cls");      
  90.     }
  91.     times++;
  92.     system("cls");     
  93.     cout<<"比賽結束! 由 ";
  94.     if(horse1 == 75) {
  95.       cout<< "◆" << "先馳得點" << endl;      
  96.     }
  97.     else if (horse2 == 75) {
  98.       cout<< "★" << "先馳得點" << endl;      
  99.     }
  100.     else if (horse3 == 75) {
  101.       cout<< "▲" << "先馳得點" << endl;      
  102.     }
  103.     else if (horse4 == 75) {
  104.       cout<< "●" << "先馳得點" << endl;      
  105.     }
  106.      
  107.       cout<<"------------------------------------------------------------------------| 終點"<<endl;
  108.       
  109.         for(int i=1; i<=horse1; i++) {
  110.            cout<<" ";
  111.         }   
  112.         cout<<"◆"<<endl;
  113.         
  114.         for(int i=1; i<=horse2; i++) {
  115.            cout<<" ";
  116.         }   
  117.         cout<<"★"<<endl;
  118.         
  119.          for(int i=1; i<=horse3; i++) {
  120.            cout<<" ";
  121.         }   
  122.         cout<<"▲"<<endl;
  123.         
  124.          for(int i=1; i<=horse4; i++) {
  125.            cout<<" ";
  126.         }   
  127.         cout<<"●"<<endl;
  128.         system("pause");
  129.         }
  130.     }

  131.     system("pause");
  132.     return 0;
  133.       
  134. }
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<time.h>
  4. using namespace std;
  5. int main()
  6. {
  7.     int times=1;
  8.     while(true)
  9.     {
  10.         int horse1=0, horse2=0, horse3=0, horse4=0,random=0,money=0,option=0,buyin=0,bet=0;
  11.         srand(time(NULL));
  12.         while(option==0 || option==1)
  13.         {
  14.             system("cls");
  15.             cout<<"「好事成雙」賽馬場  "<<"第"<<times<<"次"<<endl;
  16.             cout<<"------------------------------------------------------------------------| 終點"<<endl;
  17.             cout<<"◆"<<endl;
  18.             cout<<"★"<<endl;
  19.             cout<<"▲"<<endl;
  20.             cout<<"●"<<endl;
  21.             cout<<"可用餘額:"<<money<<"元"<<endl;
  22.             cout<<"(1)買入 (2)下注 (3)離開   請選擇:";
  23.             cin>>option;
  24.             if(option==1)
  25.             {
  26.                 cout<<"買入:";
  27.                 cin>>buyin;
  28.                 money=money+buyin;        
  29.             }
  30.             else if(option==2)
  31.             {
  32.                 cout<<"下注:";
  33.                 cin>>bet;
  34.                 cout<<"比賽即將開始..."<<endl;      
  35.             }
  36.             system("pause");
  37.             system("cls");
  38.             while(horse1!=75 && horse2!=75 && horse3!=75 && horse4!=75)
  39.             {
  40.                 random=rand()%4;   //產生0~3之隨機亂數
  41.                 if(random==0)
  42.                 {
  43.                     horse1++;
  44.                 }
  45.                 else if(random==1)
  46.                 {
  47.                     horse2++;
  48.                 }
  49.                 else if(random==2)
  50.                 {
  51.                     horse3++;
  52.                 }
  53.                 else if(random==3)
  54.                 {
  55.                     horse4++;
  56.                 }
  57.                 cout<<"比賽進行中"<<endl;
  58.                 cout<<"------------------------------------------------------------------------| 終點"<<endl;
  59.                 for(int i=1; i<=horse1; i++)
  60.                 {
  61.                     cout<<" ";
  62.                 }
  63.                 cout<<"◆"<<endl;
  64.                 for(int i=1; i<=horse2; i++)
  65.                 {
  66.                     cout<<" ";
  67.                 }
  68.                 cout<<"★"<<endl;
  69.                 for(int i=1; i<=horse3; i++)
  70.                 {
  71.                     cout<<" ";
  72.                 }
  73.                 cout<<"▲"<<endl;
  74.                 for(int i=1; i<=horse4; i++)
  75.                 {
  76.                     cout<<" ";
  77.                 }
  78.                 cout<<"●"<<endl;
  79.                 system("cls");      
  80.                 }
  81.                 times++;
  82.                 cout<<"比賽結束  由";
  83.                 if(horse1==75)
  84.                 {
  85.                     cout<<"◆";              
  86.                 }
  87.                 if(horse2==75)
  88.                 {
  89.                     cout<<"★";              
  90.                 }
  91.                 if(horse3==75)
  92.                 {
  93.                     cout<<"▲";              
  94.                 }
  95.                 if(horse4==75)
  96.                 {
  97.                     cout<<"●";              
  98.                 }
  99.                 cout<<"先馳得點!"<<endl;
  100.                 cout<<"------------------------------------------------------------------------| 終點"<<endl;
  101.                 for(int i=1; i<=horse1; i++)
  102.                 {
  103.                     cout<<" ";
  104.                 }
  105.                 cout<<"◆"<<endl;
  106.                 for(int i=1; i<=horse2; i++)
  107.                 {
  108.                     cout<<" ";
  109.                 }
  110.                 cout<<"★"<<endl;
  111.                 for(int i=1; i<=horse3; i++)
  112.                 {
  113.                     cout<<" ";
  114.                 }
  115.                 cout<<"▲"<<endl;
  116.                 for(int i=1; i<=horse4; i++)
  117.                 {
  118.                     cout<<" ";
  119.                 }
  120.                 cout<<"●"<<endl;
  121.                 system("pause");
  122.                 system("cls");      
  123.             }
  124.         }
  125.     system("pause");
  126.     return 0;   
  127. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<time.h>  
  4. using namespace std;
  5. int main()
  6. {
  7.   int times=1;
  8.   while(true)
  9.   {
  10.     int horse1=0, horse2=0, horse3=0, horse4=0, random=0;
  11.     int balance=0; //錢包
  12.     int option=0; //讓他做選擇  ,ABC => string
  13.     int buyin=0; //輸入的錢
  14.     int bet=0;
  15.     int player=0;
  16.     while(option == 0 or option ==1) //第一次或是買入
  17.     {
  18.       srand(time(NULL));
  19.       system("cls");
  20.       cout<<"「好事成雙」賽馬場   " << "第 " <<times << "局 "<<endl;
  21.       cout<<"------------------------------------------------------------------------| 終點"<<endl;
  22.       cout<<"◆"<<endl;
  23.       cout<<"★"<<endl;  
  24.       cout<<"▲"<<endl;
  25.       cout<<"●"<<endl;
  26.    
  27.       cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;   
  28.       cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
  29.       cin>>option;
  30.       if(option==1)
  31.       {
  32.           cout<<"買入: ";
  33.           cin>>buyin;
  34.           balance+=buyin;           
  35.       }
  36.       if(option==2)
  37.       {
  38.       cout<<"下注"<<endl;
  39.       cin>>bet;
  40.       cout<<"1◆2★3▲4●"<<endl;
  41.       cin>>player;
  42.       cout<<"進行中"<<endl ;     
  43.       }
  44.       if(option==3)
  45.       {
  46.       break;            
  47.       }
  48.       system("pause");
  49.       system("cls");
  50.    
  51.    
  52.     while(horse1!=75 && horse2!=75 && horse3!=75 && horse4!=75)
  53.     {
  54.          
  55.         random=rand()%4;   //產生0~3之隨機亂數
  56.         if(random==0) {
  57.            horse1++;
  58.         }  
  59.         else if(random==1) {
  60.            horse2++;
  61.         }
  62.         else if(random==2) {
  63.            horse3++;
  64.         }
  65.         else if(random==3) {
  66.            horse4++;
  67.         }
  68.         cout<<"比賽進行中"<<endl;
  69.         cout<<"------------------------------------------------------------------------| 終點"<<endl;
  70.       
  71.         for(int i=1; i<=horse1; i++) {
  72.            cout<<" ";
  73.         }   
  74.         cout<<"◆"<<endl;
  75.         
  76.         for(int i=1; i<=horse2; i++) {
  77.            cout<<" ";
  78.         }   
  79.         cout<<"★"<<endl;
  80.         
  81.          for(int i=1; i<=horse3; i++) {
  82.            cout<<" ";
  83.         }   
  84.         cout<<"▲"<<endl;
  85.         
  86.          for(int i=1; i<=horse4; i++) {
  87.            cout<<" ";
  88.         }   
  89.         cout<<"●"<<endl;
  90.         system("cls");      
  91.     }
  92.     times++;
  93.     system("cls");     
  94.     cout<<"比賽結束! 由 ";
  95.     if(horse1 == 75) {
  96.       cout<< "◆" << "先馳得點" << endl;      
  97.     }
  98.     else if (horse2 == 75) {
  99.       cout<< "★" << "先馳得點" << endl;      
  100.     }
  101.     else if (horse3 == 75) {
  102.       cout<< "▲" << "先馳得點" << endl;      
  103.     }
  104.     else if (horse4 == 75) {
  105.       cout<< "●" << "先馳得點" << endl;      
  106.     }
  107.      
  108.       cout<<"------------------------------------------------------------------------| 終點"<<endl;
  109.       
  110.         for(int i=1; i<=horse1; i++) {
  111.            cout<<" ";
  112.         }   
  113.         cout<<"◆"<<endl;
  114.         
  115.         for(int i=1; i<=horse2; i++) {
  116.            cout<<" ";
  117.         }   
  118.         cout<<"★"<<endl;
  119.         
  120.          for(int i=1; i<=horse3; i++) {
  121.            cout<<" ";
  122.         }   
  123.         cout<<"▲"<<endl;
  124.         
  125.          for(int i=1; i<=horse4; i++) {
  126.            cout<<" ";
  127.         }   
  128.         cout<<"●"<<endl;
  129.     system("pause");
  130. }
  131. }
  132.     system("pause");
  133.     return 0;
  134.       
  135. }
複製代碼

TOP

  1. {:3_41:}
複製代碼
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<time.h>  
  4. using namespace std;
  5. int main()
  6. {
  7.   int times=1;
  8.   while(true)
  9.   {
  10.     int horse1=0, horse2=0, horse3=0, horse4=0, random=0;
  11.     int balance=0;
  12.     int option=0;  
  13.     int buyin=0;
  14.     int bet=0;  
  15.     int player=0;
  16.     while(option == 0 or option ==1)
  17.     {
  18.       srand(time(NULL));
  19.       system("cls");
  20.       cout<<"「好事成雙」賽馬場   " << "第 " <<times << "局 "<<endl;
  21.       cout<<"------------------------------------------------------------------------| 終點"<<endl;
  22.       cout<<"◆"<<endl;
  23.       cout<<"★"<<endl;  
  24.       cout<<"▲"<<endl;
  25.       cout<<"●"<<endl;
  26.    
  27.       cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;   
  28.       cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
  29.       cin>>option;
  30.       if(option==1)
  31.       {
  32.           cout<<"買入: ";
  33.           cin>>buyin;
  34.           balance+=buyin;
  35.       }
  36.       else if(option == 2)
  37.       {
  38.          cout<<"下注: ";
  39.          cin>>bet;  
  40.          cout<<endl<<"(1)◆ (2)★ (3)▲ (4)●  請選擇: ";
  41.          cin>>player;
  42.          cout<<"比賽即將開始..."<<endl<<endl;   
  43.       }
  44.       else if(option == 3)
  45.       {
  46.          break;
  47.       }
  48.       system("pause");
  49.       system("cls");
  50.       
  51.       while(horse1!=75 && horse2!=75 && horse3!=75 && horse4!=75)
  52.       {
  53.          
  54.         random=rand()%4;   
  55.         if(random==0) {
  56.            horse1++;
  57.         }  
  58.         else if(random==1) {
  59.            horse2++;
  60.         }
  61.         else if(random==2) {
  62.            horse3++;
  63.         }
  64.         else if(random==3) {
  65.            horse4++;
  66.         }
  67.         cout<<"比賽進行中"<<endl;
  68.         cout<<"------------------------------------------------------------------------| 終點"<<endl;
  69.       
  70.         for(int i=1; i<=horse1; i++) {
  71.            cout<<" ";
  72.         }   
  73.         cout<<"◆"<<endl;
  74.         
  75.         for(int i=1; i<=horse2; i++) {
  76.            cout<<" ";
  77.         }   
  78.         cout<<"★"<<endl;
  79.         
  80.          for(int i=1; i<=horse3; i++) {
  81.            cout<<" ";
  82.         }   
  83.         cout<<"▲"<<endl;
  84.         
  85.          for(int i=1; i<=horse4; i++) {
  86.            cout<<" ";
  87.         }   
  88.         cout<<"●"<<endl;
  89.         system("cls");      
  90.     }
  91.     times++;
  92.     system("cls");     
  93.     cout<<"比賽結束! 由 ";
  94.     if(horse1 == 75) {
  95.       cout<< "◆" << "先馳得點" << endl;      
  96.     }
  97.     else if (horse2 == 75) {
  98.       cout<< "★" << "先馳得點" << endl;      
  99.     }
  100.     else if (horse3 == 75) {
  101.       cout<< "▲" << "先馳得點" << endl;      
  102.     }
  103.     else if (horse4 == 75) {
  104.       cout<< "●" << "先馳得點" << endl;      
  105.     }
  106.      
  107.       cout<<"------------------------------------------------------------------------| 終點"<<endl;
  108.       
  109.         for(int i=1; i<=horse1; i++) {
  110.            cout<<" ";
  111.         }   
  112.         cout<<"◆"<<endl;
  113.         
  114.         for(int i=1; i<=horse2; i++) {
  115.            cout<<" ";
  116.         }   
  117.         cout<<"★"<<endl;
  118.         
  119.          for(int i=1; i<=horse3; i++) {
  120.            cout<<" ";
  121.         }   
  122.         cout<<"▲"<<endl;
  123.         
  124.          for(int i=1; i<=horse4; i++) {
  125.            cout<<" ";
  126.         }   
  127.         cout<<"●"<<endl;
  128.         system("pause");
  129.         }
  130.     }

  131.     system("pause");
  132.     return 0;
  133.       
  134. }
複製代碼

TOP

#include<iostream>
#include<cstdlib>
#include<time.h>
using namespace std;
int main()
{
    int times=0;
    while(true)
    {
    int horse1=0,horse2=0,horse3=0,horse4=0,random=0;
    int money=0,buyin=0,choise=0,bet=0,player=0;
    system("cls");
    while( choise== 0 or choise ==1)
    {
    srand(time(NULL));
    system("cls");
    cout<<"人山人海人見人愛  賽馬場"<<endl;
    cout<<"---------------------------------------------|終點"<<endl;
    cout<<"Q"<<endl;
    cout<<"∮"<<endl;
    cout<<"㊣"<<endl;
    cout<<"♂"<<endl;
   
    cout<<"可用餘額:"<<money<<"元"<<endl;
    cout<<"(1)買入(2)下注(3)離開,請選擇:";
    cin>>choise;
    if(choise==1)
    {
     cout<<"請輸入價錢:";
     cin>>buyin;         
     money=+buyin;   
    }
    else if(choise==2)
    {
     cout<<"下注:";
     cin>>bet;
     cout<<"請選擇下注馬匹1)Q(2)∮(3)㊣(4)♂";
     cin>>player;
     cout<<"比賽即將進行..."<<endl;      
    }
    else if(choise==3)
    {
     break;   
    }

     
   
    system("pause");
    system("cls");
   
   
    while(horse1!=45&&horse2!=45&&horse3!=45&&horse4!=45)
    {
     random=rand()%4;
     if(random==0)
     horse1++;
     if(random==1)
     horse2++;
     if(random==2)
     horse3++;
     if(random==3)
     horse4++;
     cout<<"比賽進行中"<<endl;
     cout<<"---------------------------------------------| 終點"<<endl;
     for(int i=1; i<=horse1; i++)
     cout<<" ";  
     cout<<"Q"<<endl;
     for(int i=1;i<=horse2;i++)
     cout<<" ";
     cout<<"∮"<<endl;  
     for(int i=1;i<=horse3;i++)
     cout<<" ";
     cout<<"㊣"<<endl;   
     for(int i=1;i<=horse4;i++)
     cout<<" ";
     cout<<"♂"<<endl;   
     system("cls");                                       
    }
    times++;
    cout<<"比賽結束!由";
    if(horse1==45)
    cout<<"Q獲勝~~"<<endl;
    else if(horse2==45)
    cout<<"∮獲勝~~"<<endl;
    else if(horse3==45)
    cout<<"㊣獲勝~~"<<endl;
    else if(horse1=4==45)
    cout<<"♂獲勝~~"<<endl;
    cout<<"---------------------------------------------| 終點"<<endl;
    for(int i=1; i<=horse1; i++)
    cout<<" ";  
    cout<<"Q"<<endl;
    for(int i=1;i<=horse2;i++)
    cout<<" ";
    cout<<"∮"<<endl;  
    for(int i=1;i<=horse3;i++)
    cout<<" ";
    cout<<"㊣"<<endl;   
    for(int i=1;i<=horse4;i++)
    cout<<" ";
    cout<<"♂"<<endl;
    system("pause");   
    }
}
     system("pause");
     return 0;
}

TOP

#include<iostream>
#include<cstdlib>
#include<time.h>
using namespace std;
int main()
{
   
   int tim=1;
    while(true)
  {
    int gay1=0, gay2=0, gay3=0, gay4=0, rad=0,mm=0,lol=0,buy=0,bet=0,play=0;
    while(lol == 0 or lol ==1)            
    {
    srand(time(NULL));
    system("cls");
    cout<<"尬賽馬場          "<< "第" <<tim << "局"<<endl;
    cout<<"------------------------------------------------------------------------| 終點"<<endl;
    cout<<"◆"<<endl;
    cout<<"★"<<endl;
    cout<<"▲"<<endl;
    cout<<"●"<<endl;
    system("pause");
    system("cls");
   
     cout<<"餘額: "<<mm<<"元"<<endl;   
      cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
      cin>>lol;
      if(lol==1)
      {
          cout<<"買入: ";
          cin>>buy;
          mm+=buy;           
      }
      else if(lol == 2)
      {
         cout<<"下注: ";
         cin>>bet;  
         cout<<endl<<"(1)◆ (2)★ (3)▲ (4)●  請選擇: ";
         cin>>play;
         cout<<"比賽即將開始..."<<endl<<endl;   
      }
      else if(lol == 3)
      {
         break;
      }
      system("pause");
      system("cls");
      system("pause");
      system("cls");
    }
   
    while(gay1!=75 && gay2!=75 && gay3!=75 && gay4!=75)
    {
        rad=rand()%4;   
        if(rad==0)
          {  gay1++;}
        else if(rad==1)
         {  gay2++;}
        else if(rad==2)
          {  gay3++;}
        else if(rad==3)
          {  gay4++; }      
        cout<<"比賽進行中"<<endl;
        cout<<"------------------------------------------------------------------------| 終點"<<endl;
        for(int i=1; i<=gay1; i++)
           { cout<<" ";}
        cout<<"◆"<<endl;
        for(int i=1; i<=gay2; i++)
           { cout<<" ";}
        cout<<"★"<<endl;
        
          for(int i=1; i<=gay3; i++)
          {  cout<<" ";}
        cout<<"▲"<<endl;
      
          for(int i=1; i<=gay4; i++)
          {  cout<<" ";}
        cout<<"●"<<endl;
        system("cls");      
   
      
    }
    tim++;
    system("cls");     
    cout<<"比賽結束! 由 ";
    if(gay1 == 75) {
      cout<< "◆" << "先到終點" << endl;      
    }
    else if (gay2 == 75) {
      cout<< "★" << "先到終點" << endl;      
    }
    else if (gay3 == 75) {
      cout<< "▲" << "先到終點" << endl;      
    }
    else if (gay4 == 75) {
      cout<< "●" << "先到終點" << endl;      
    }
     
      cout<<"------------------------------------------------------------------------| 終點"<<endl;
      
for(int i=1; i<=gay1; i++)
{
         cout<<" ";
   }  
      cout<<"◆"<<endl;
        
       for(int i=1; i<=gay2; i++)
       {
       cout<<" ";
   }   
       cout<<"★"<<endl;
        
   for(int i=1; i<=gay3; i++)
    {
         cout<<" ";
   }   
   cout<<"▲"<<endl;
        
   for(int i=1; i<=gay4; i++)
   {
   cout<<" ";
   }   
        cout<<"●"<<endl;
    system("pause");
}


    system("pause");
    return 0;
      
}

TOP

返回列表