返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    
  7.     int n=1,balance=0;
  8.     re1:
  9.     int a=0, b=0, c=0, d=0, r,option,buy;
  10.     system("cls");
  11.     cout<<"「好事成雙」賽馬場 第 "<<n<<" 局"<<endl;
  12.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  13.     cout<<"◆"<<endl;
  14.     cout<<"★"<<endl;
  15.     cout<<"▲"<<endl;
  16.     cout<<"●"<<endl;
  17.    
  18.     cout<<endl;
  19.     cout<<"剩餘金額"<<balance<<"元"<<endl<<endl;
  20.     cout<<"(1)買入 (2)下注 (3)離開  選擇:"<<endl;
  21.     cin>>option;
  22.      if(option==1)
  23.     {   
  24.     cout<<"買入"<<endl;
  25.     cin>>buy;
  26.     balance+=buy;
  27.     goto re1;   
  28.     }
  29.     system("pause");
  30.     system("cls");
  31.     srand(time(NULL));
  32.     while(a!=60 && b!=60 && c!=60 && d!=60)
  33.     {
  34.     r=rand()%4;   
  35.       if(r==0)
  36.          a++;
  37.       else if(r==1)
  38.           b++;
  39.       else if(r==2)
  40.           c++;
  41.       else
  42.           d++;
  43.         cout<<"比賽進行中"<<endl;
  44.         cout<<"------------------------------------------------------------| 終點"<<endl;
  45.         
  46.       for(int i=1; i<=a; i++)
  47.          cout<<" ";
  48.          cout<<"◆"<<endl;
  49.          
  50.       for(int i=1; i<=b; i++)
  51.           cout<<" ";
  52.           cout<<"★"<<endl;
  53.         
  54.       for(int i=1; i<=c; i++)
  55.           cout<<" ";
  56.           cout<<"▲"<<endl;
  57.         
  58.       for(int i=1; i<=d; i++)
  59.          cout<<" ";
  60.          cout<<"●"<<endl;   
  61.         system("cls");      
  62.     }

  63.     cout<<"比賽結束";
  64.    
  65.     if(a==60)
  66.        cout<<"◆";
  67.     else if(b==60)
  68.        cout<<"★";
  69.     else if(c==60)
  70.         cout<<"▲";
  71.     else
  72.         cout<<"●";
  73.     cout<<" 先到了!"<<endl;
  74.   
  75.     cout<<"--------------------------------------------------------------| 終點"<<endl;
  76.     for(int i=1; i<=a; i++)
  77.         cout<<" ";
  78.     cout<<"◆"<<endl;
  79.    
  80.     for(int i=1; i<=b; i++)
  81.         cout<<" ";
  82.     cout<<"★"<<endl;
  83.    
  84.     for(int i=1; i<=c; i++)
  85.         cout<<" ";
  86.     cout<<"▲"<<endl;
  87.    
  88.     for(int i=1; i<=d; i++)
  89.         cout<<" ";
  90.     cout<<"●"<<endl;
  91.     system("pause");

  92.     n++;
  93.     goto re1;
  94.     system("pause");
  95.     return 0;   
  96. }
複製代碼

TOP

返回列表