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

TOP

返回列表