返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     int n=1,balance=0;
  7.     re1:
  8.     int a=0,b=0,c=0,d=0,r,option,buying,bet;
  9.     system("cls");
  10.     cout<<">酷炫賽馬場< 第"<<n++<<"局"<<endl;
  11.     cout<<"=========================================================================|終點"<<endl;
  12.     cout<<"∞"<<endl;
  13.     cout<<"△"<<endl;
  14.     cout<<"◇"<<endl;
  15.     cout<<"☆"<<endl;
  16.     cout<<endl;
  17.     cout<<"可用餘額:"<<balance<<"元"<<endl<<endl;
  18.     cout<<"(1)買入  (2)下注  (3)離開  請選擇: ";
  19.     cin>>option;
  20.     if(option==1)
  21.     {
  22.          cout<<"買入 :";
  23.          cin>>buying;
  24.          balance+=buying;
  25.          goto re1;              
  26.     }else if(option==2)
  27.     {
  28.          if(balance==0)
  29.          {
  30.               cout<<"可用餘額不足! 請先買入!"<<endl<<endl;
  31.               system("pause");
  32.               goto re1;         
  33.          }
  34.          cout<<"下注 :";
  35.          cin>>bet;
  36.          if(bet>balance)
  37.          {
  38.               cout<<"可用餘額不足! 請先買入!"<<endl<<endl;
  39.               system("pause");
  40.               goto re1;         
  41.          }
  42.          else
  43.          {
  44.               cout<<endl<<"(1)∞ (2)△ (3)◇ (4)☆  請選擇: ";
  45.               cin>>option;
  46.               cout<<"比賽即將開始..."<<endl<<endl;
  47.               system("pause");
  48.          }  
  49.     }else if(option==3)
  50.     {
  51.               goto end;
  52.     }else
  53.     {
  54.                cout<<"輸入錯誤!"<<endl;
  55.                system("pause");
  56.                goto re1;
  57.     }
  58.     system("cls");
  59.     srand(time(NULL));
  60.     while(a!=75 && b!=75 && c!=75 && d!=75)
  61.     {
  62.           r=rand()%4;
  63.           if(r==0)
  64.               a++;
  65.           else if(r==1)
  66.               b++;
  67.           else if(r==2)
  68.               c++;
  69.           else
  70.               d++;
  71.           cout<<"比賽進行中"<<endl;
  72.           cout<<"=========================================================================|終點"<<endl;
  73.           for(int i=1; i<=a; i++)
  74.               cout<<" ";
  75.           cout<<"∞"<<endl;
  76.           for(int i=1; i<=b; i++)
  77.               cout<<" ";
  78.           cout<<"△"<<endl;   
  79.           for(int i=1; i<=c; i++)
  80.               cout<<" ";
  81.           cout<<"◇"<<endl;   
  82.           for(int i=1; i<=d; i++)
  83.               cout<<" ";  
  84.           cout<<"☆"<<endl;
  85.           system("cls");
  86.     }
  87.     cout<<"比賽結束 由";
  88.     if(a==75)
  89.         cout<<"∞";
  90.     else if(b==75)
  91.         cout<<"△";
  92.     else if(c==75)
  93.         cout<<"◇";
  94.     else
  95.         cout<<"●";
  96.     cout<<" 先馳得點!"<<endl;
  97.     cout<<"=========================================================================|終點"<<endl;
  98.     for(int i=1; i<=a; i++)
  99.               cout<<" ";
  100.           cout<<"∞"<<endl;
  101.     for(int i=1; i<=b; i++)
  102.               cout<<" ";
  103.           cout<<"△"<<endl;   
  104.     for(int i=1; i<=c; i++)
  105.               cout<<" ";
  106.           cout<<"◇"<<endl;   
  107.     for(int i=1; i<=d; i++)
  108.               cout<<" ";  
  109.           cout<<"☆"<<endl;
  110.     system("pause");      
  111.     goto re1;
  112.     end:                    
  113.     system("pause");   
  114.     return 0;
  115. }
複製代碼

TOP

返回列表