返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int n=1, balance=0;
  8.     int option, buying, bet, player;
  9.     re:
  10.         system("cls");
  11.         srand(time(NULL));
  12.         int s[]={0,0,0,0};
  13.         string p[]={"◆","★","▲","●"};
  14.         int r=0;
  15.         cout<<"本賽馬場 第"<<n<<"局"<<endl;
  16.         cout<<"-------------------------------------------------------------------------  終點"<<endl;
  17.         for(int i=0; i<4; i++){
  18.             cout<<p[i]<<endl;
  19.         }
  20.         cout<<"可用餘額"<<balance<<"元"<<endl;
  21.         cout<<"請選擇 (1)買入(2)下注(3)離開"<<endl;
  22.         cin>>option;
  23.         if(option==1){
  24.             cout<<"買入 :"<<endl;
  25.             cin>>buying;
  26.             if(buying<=0){
  27.                 cout<<"輸入錯誤"<<endl;
  28.                 _sleep(1500);
  29.                 goto re;
  30.             }
  31.             balance+=buying;
  32.             goto re;
  33.         }
  34.         else if(option==2){
  35.             cout<<"下注 :"<<endl;
  36.             cin>>bet;
  37.             if(bet>balance){
  38.                 cout<<"餘額不足"<<endl;
  39.                 _sleep(1500);
  40.                 goto re;
  41.             }
  42.             if(bet<=0){
  43.                 cout<<"輸入錯誤"<<endl;
  44.                 _sleep(1500);
  45.                 goto re;
  46.             }
  47.             cout<<"請選擇  (1)◆ (2)★ (3)▲ (4)●"<<endl;
  48.             cin>>player;
  49.             cout<<"比賽即將開始"<<endl;
  50.         }
  51.         else if(option==3){
  52.             goto end;
  53.         }
  54.         else{
  55.             cout<<"輸入錯誤"<<endl;
  56.             _sleep(1500);
  57.             goto re;
  58.         }
  59.         system("pause");
  60.         system("cls");
  61.         while(s[r]<=73){
  62.         r=rand()%4;
  63.         s[r]++;
  64.         cout<<"比賽進行中"<<endl;
  65.         cout<<"-------------------------------------------------------------------------  終點"<<endl;
  66.         for(int i=0; i<4; i++){
  67.             for(int j=0; j<s[i]; j++)
  68.             cout<<" ";
  69.             cout<<p[i]<<endl;
  70.         }
  71.         _sleep(50);
  72.         system("cls");
  73.         }
  74.         cout<<"最終由"<<p[r]<<"先馳得點"<<endl;
  75.         cout<<"比賽結束"<<endl;
  76.         cout<<"-------------------------------------------------------------------------  終點"<<endl;
  77.         for(int i=0; i<4; i++){
  78.             for(int j=0; j<s[i]; j++)
  79.             cout<<" ";
  80.             cout<<p[i]<<endl;
  81.         }
  82.         if(r+1==player){
  83.             balance+=bet*3;
  84.             cout<<"贏得"<<bet*3<<"元"<<endl;
  85.         }
  86.         else{
  87.             balance-=bet;
  88.             cout<<"損失"<<bet<<"元"<<endl;
  89.         }
  90.         system("pause");
  91.         n++;
  92.         goto re;
  93.         end:
  94.             cout<<"慢走"<<endl;
  95.             _sleep(1500);
  96.             return 0;

  97. }
複製代碼

TOP

返回列表