返回列表 發帖
  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 earn,option,buy, bet, player;
  10.     re:
  11.     system("cls");
  12.     srand(time(NULL));
  13.     int s[]={0,0,0,0};        
  14.     string p[]={"◆","★","▲","●"};      
  15.     int r=0;
  16.     cout<<"「好事成雙」賽馬場 第"<<round<<"局"<<endl;
  17.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  18.     for(int i=0; i<4; i++)
  19.         cout<<p[i]<<endl;      
  20.         cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;
  21.     cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
  22.     cin>>option;
  23.         if(option==1){
  24.             cout<<"買入: ";
  25.             cin>>buy;
  26.             if(buy<=0){
  27.                         cout<<"輸入錯誤!";
  28.             _sleep(1500);      
  29.             goto re;
  30.                 }
  31.             balance=balance+buy;      
  32.             goto re;
  33.         }
  34.     else if(option==2)
  35.     {
  36.         cout<<"下注: ";
  37.         cin>>bet;
  38.         if(bet<=0)
  39.         {
  40.                
  41.             cout<<"輸入錯誤!";
  42.             _sleep(1500);
  43.             goto re;     
  44.         }
  45.         if(bet>balance)
  46.         {
  47.                
  48.             cout<<"可用餘額不足,請先買入!";
  49.             _sleep(1500);
  50.             goto re;     
  51.         }
  52.       
  53.         cout<<endl<<"(1)◆ (2)★ (3)▲ (4)● 請選擇: ";
  54.         cin>>player;
  55.         cout<<"比賽即將開始..."<<endl<<endl;         
  56.     }
  57.     else if(option==3)
  58.     {
  59.         goto end;         
  60.     }
  61.     else
  62.     {
  63.         cout<<"輸入錯誤!";
  64.         _sleep(1500);
  65.         goto re;
  66.     }
  67.         system("pause");
  68.     system("cls");        
  69.     while(s[r]<=73)        
  70.     {
  71.         r=rand()%4;   
  72.         s[r]++;        
  73.         cout<<"比賽進行中"<<endl;
  74.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  75.         for(int i=0; i<4; i++)
  76.         {
  77.             for(int j=0; j<s[i]; j++)
  78.                 cout<<" ";        
  79.             cout<<p[i]<<endl;        
  80.         }
  81.         _sleep(20);
  82.         system("cls");
  83.     }
  84.     cout<<"比賽結束!  由 "<<p[r]<<" 先馳得點!"<<endl;
  85.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  86.     for(int i=0; i<4; i++)
  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.     earn=earn+bet*3;
  97. }
  98.     else{
  99.     cout<<"輸了"<<bet<<"元"<<endl;
  100.     earn=earn-bet;
  101.     }   
  102.     system("pause");
  103.     round++;        
  104.     goto re;
  105.     end:
  106.        if(earn>0)
  107.        cout<<"恭喜您賺了"<<earn<<"元"<<endl;
  108.        else if(earn<0)
  109.        cout<<"對不起,你賠了"<<-earn<<"元"<<endl;
  110.        else
  111.        cout<<"不賺不賠,好玩~"<<endl;
  112.     cout<<endl<<"不玩了? 88~"<<endl;
  113.     _sleep(1500);
  114.    
  115.     return 0;
  116. }
複製代碼

TOP

返回列表