返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.         int round=1;      
  8.         int balance=0;        
  9.         int option;        
  10.         int buy, bet, player;
  11.         int j=0;
  12.     re:
  13.     system("cls");
  14.     srand(time(NULL));
  15.     int s[]={0,0,0,0};   
  16.     string p[]={"◆","★","▲","●"};   
  17.     int r=0;
  18.     cout<<"「好事成雙」賽馬場 第"<<round<<"局"<<endl;
  19.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  20.     for(int i=0; i<4; i++)
  21.         cout<<p[i]<<endl;  
  22.    
  23.         cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;
  24.     cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
  25.     cin>>option;
  26.         if(option==1){
  27.             cout<<"買入: ";
  28.             cin>>buy;
  29.             if(buy<=0){
  30.                         cout<<"輸入錯誤!";
  31.             _sleep(1500);      
  32.             goto re;
  33.                 }
  34.             balance=balance+buy;     
  35.             goto re;
  36.         }
  37.     else if(option==2)
  38.     {
  39.         cout<<"下注: ";
  40.         cin>>bet;
  41.         if(bet<=0){
  42.             cout<<"輸入錯誤!";
  43.             _sleep(1500);
  44.             goto re;     
  45.         }
  46.         if(bet>balance)
  47.         {

  48.             cout<<"可用餘額不足,請先買入!";
  49.             _sleep(1500);
  50.             goto re;     
  51.         }
  52.         cout<<endl<<"(1)◆ (2)★ (3)▲ (4)● 請選擇: ";
  53.         cin>>player;
  54.         cout<<"比賽即將開始..."<<endl<<endl;         
  55.     }
  56.     else if(option==3)
  57.     {
  58.         goto end;         
  59.     }
  60.     else
  61.     {
  62.         cout<<"輸入錯誤!";
  63.         _sleep(1500);
  64.         goto re;
  65.     }
  66.         system("pause");
  67.     system("cls");      
  68.     while(s[r]<=73)      
  69.     {
  70.         r=rand()%4;   
  71.         s[r]++;      
  72.         cout<<"比賽進行中"<<endl;
  73.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  74.         for(int i=0; i<4; i++)
  75.         {
  76.             for(int j=0; j<s[i]; j++)
  77.                 cout<<" ";      
  78.             cout<<p[i]<<endl;  
  79.         }
  80.         _sleep(25);
  81.         system("cls");
  82.     }
  83.     cout<<"比賽結束!  由 "<<p[r]<<" 贏得勝利!"<<endl;
  84.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  85.     for(int i=0; i<4; i++)
  86.     {
  87.            
  88.         for(int j=0; j<s[i]; j++)
  89.             cout<<" ";
  90.         cout<<p[i]<<endl;
  91.     }
  92.     cout<<endl;
  93.     if(player-1==r){
  94.         balance=balance+bet*3;
  95.         cout<<"賺了"<<bet*3<<"元"<<endl;
  96.         j=j+bet*3;         
  97.     }
  98.     else{
  99.          balance=balance-bet;
  100.         cout<<"損失"<<bet<<"元"<<endl;
  101.         j=j-bet;  
  102.     }
  103.     system("pause");
  104.     round++;      
  105.     goto re;
  106.    
  107.     end:
  108.     cout<<endl<<"遊戲結束"<<endl;
  109.     if(j==0){               
  110.     cout<<"沒輸沒贏!全身而退!"<<endl;
  111.     }
  112.     else if(j>0){               
  113.     cout<<"恭喜你!這次總共贏了"<<j<<"元!"<<endl;
  114.     }
  115.     else{
  116.     cout<<"不好意思!讓你損失了"<<j<<"元!"<<endl;     
  117. }
  118.    
  119.     _sleep(1500);
  120.    
  121.     return 0;
  122. }
複製代碼

TOP

返回列表