返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    
  7.     int n=1,money=0,winner,winmoney=0;
  8.     re1:
  9.     int a=0, b=0, c=0, d=0, r,option,bet,buyin;
  10.     system("cls");
  11.     cout<<"「好事成雙」賽馬場 第 "<<n<<" 局"<<endl;
  12.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  13.     cout<<"◆"<<endl;
  14.     cout<<"★"<<endl;
  15.     cout<<"▲"<<endl;
  16.     cout<<"●"<<endl<<endl;
  17.     cout<<"可用餘額: "<< money<<"元"<<endl<<endl;
  18.     cout<<"(1)買入 (2)下注 (3)離開 請選擇:";
  19.     cin>>option;
  20.     if(option==1)   
  21.     {
  22.       
  23.        cout<<"買入:";
  24.        cin>>buyin;
  25.        money = money + buyin;
  26.        goto re1;
  27.     }else if(option==2)
  28.     {
  29.        if(money==0)   
  30.        {
  31.            cout<<"可用餘額不足!請先買入!"<<endl;
  32.            system("pause");
  33.            goto re1;
  34.        }
  35.       
  36.         cout<<"下注:";
  37.         cin>> bet;
  38.         if(bet>money)  
  39.         {
  40.            cout<<"可用餘額不足!請先買入!"<<endl;
  41.            system("pause");
  42.            goto re1;
  43.         }else
  44.         {
  45.              cout<<"(1)◆(2)★(3)▲(4)● 請選擇: "<<endl;
  46.              cin>>option;
  47.             cout<<"比賽即將開始..."<<endl<<endl;
  48.             system("pause");   
  49.         }
  50.         
  51.     }else if(option==3)
  52.     {
  53.           goto end;
  54.     }else
  55.     {
  56.          cout<<"輸入錯誤!!"<<endl;
  57.           system("pause");
  58.          goto re1;
  59.     }
  60.    
  61.    
  62.     system("pause");
  63.     system("cls");
  64.     srand(time(NULL));
  65.     while(a!=70 && b!=70 && c!=70 && d!=70)
  66.     {
  67.         r=rand()%4;   
  68.         if(r==0)
  69.             a++;
  70.         else if(r==1)
  71.             b++;
  72.         else if(r==2)
  73.             c++;
  74.         else
  75.             d++;
  76.         cout<<"比賽進行中"<<endl;
  77.         cout<<"------------------------------------------------------------------------| 終點"<<endl;
  78.         for(int i=1; i<=a; i++)
  79.             cout<<" ";
  80.         cout<<"◆"<<endl;
  81.         
  82.         for(int i=1; i<=b; i++)
  83.             cout<<" ";
  84.         cout<<"★"<<endl;
  85.         
  86.         for(int i=1; i<=c; i++)
  87.             cout<<" ";
  88.         cout<<"▲"<<endl;
  89.         
  90.         for(int i=1; i<=d; i++)
  91.             cout<<" ";
  92.         cout<<"●"<<endl;   
  93.         system("cls");      
  94.     }
  95.      
  96.     cout<<"比賽結束! 由 ";
  97.     if(a==70)
  98.         {
  99.         cout<<"◆";
  100.         winner=1;
  101.         }
  102.     else if(b==70)
  103.         {
  104.         cout<<"★";
  105.         winner=2;
  106.         }
  107.     else if(c==70)
  108.         {
  109.         cout<<"▲";
  110.         winner=3;
  111.         }
  112.     else
  113.         {
  114.         cout<<"●";
  115.         winner=4;
  116.         }
  117.     cout<<" 先馳得點!"<<endl;
  118.    
  119.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  120.     for(int i=1; i<=a; i++)
  121.         cout<<" ";
  122.     cout<<"◆"<<endl;
  123.    
  124.     for(int i=1; i<=b; i++)
  125.         cout<<" ";
  126.     cout<<"★"<<endl;
  127.    
  128.     for(int i=1; i<=c; i++)
  129.         cout<<" ";
  130.     cout<<"▲"<<endl;
  131.    
  132.     for(int i=1; i<=d; i++)
  133.         cout<<" ";
  134.     cout<<"●"<<endl;
  135.     if(option==winner)
  136.     {
  137.         cout<<"贏了"<<bet*3<<"元!"<<endl;
  138.         money+=bet*3;
  139.         winmoney+=bet*3;
  140.     }
  141.     else{
  142.             cout<<"損失"<<bet<<"元!"<<endl;
  143.             money-=bet;
  144.             winmoney-=bet;
  145.         }
  146.    
  147.     system("pause");
  148.    
  149.     n++;
  150.     goto re1;
  151.     end:
  152.         if(winmoney==0)
  153.         {
  154.             cout<<"沒輸沒贏,全身而退!"<<endl;               
  155.         }
  156.         else if(winmoney>0)
  157.         {
  158.             cout<<"恭喜你!這次總共贏了"<<winmoney<<"元"<<endl;     
  159.         }
  160.         else
  161.         {
  162.             cout<<"不好意?,讓您損失了"<<winmoney<<"元"<<endl;   
  163.         }
  164.         cout<<"謝謝光臨!下次再來!"<<endl;
  165.     system("pause");
  166.     return 0;   
  167. }
複製代碼

TOP

返回列表