返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int n=1, money=0;
  7.    re:
  8.    int a=0, b=0, c=0, d=0, r, option, buyin;
  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<<"可用餘額:"<<money<<"元"<<endl<<endl;
  18.    cout<<"(1)買入 (2)下注 (3)離開"<<endl;
  19.    cin>>option;
  20.    if(option==1)
  21.    {
  22.       cout<<"買入:"<<endl;
  23.       cin>>buyin;
  24.       money+=buyin;
  25.       goto re;
  26.    }   
  27.    system("pause");
  28.    system("cls");
  29.    srand(time(NULL));
  30.    
  31.    while(a!=20 && b!=20 && c!=20 && d!=20)
  32.    {
  33.       cout<<"賽馬進行中..."<<endl;
  34.       cout<<"-------------------------------------------|終點"<<endl;
  35.         r = rand()%4+1;
  36.         if(r==1)
  37.            a++;
  38.         if(r==2)
  39.            b++;
  40.         if(r==3)
  41.            c++;
  42.         if(r==4)
  43.            d++;   
  44.       
  45.        for(int i=0;i<=a;i++)
  46.           cout<<"  ";
  47.        cout<<"◆"<<endl;
  48.        a++;
  49.        for(int i=0;i<=b;i++)
  50.           cout<<"  ";
  51.        cout<<"★"<<endl;
  52.        b++;
  53.        for(int i=0;i<=c;i++)
  54.           cout<<"  ";
  55.        cout<<"▲"<<endl;
  56.        c++;  
  57.        for(int i=0;i<=d;i++)
  58.           cout<<"  ";
  59.        cout<<"●"<<endl;
  60.        d++;
  61.        system("cls");
  62.       
  63.    }
  64.     cout<<"賽馬結束...!由 ";
  65.     if(a==20)
  66.        cout<<"◆";
  67.     else if(b==20)
  68.        cout<<"★";
  69.     else if(c==20)
  70.        cout<<"▲";
  71.     else
  72.        cout<<"●";
  73.     cout<<"先抵達終點!"<<endl;
  74.     cout<<"-------------------------------------------|終點"<<endl;
  75.        for(int i=0;i<=a;i++)
  76.           cout<<"  ";
  77.        cout<<"◆"<<endl;
  78.        a++;
  79.        for(int i=0;i<=b;i++)
  80.           cout<<"  ";
  81.        cout<<"★"<<endl;
  82.        b++;
  83.        for(int i=0;i<=c;i++)
  84.           cout<<"  ";
  85.        cout<<"▲"<<endl;
  86.        c++;  
  87.        for(int i=0;i<=d;i++)
  88.           cout<<"  ";
  89.        cout<<"●"<<endl;
  90.        d++;
  91.        system("pause");
  92.        n++;
  93.        goto re;
  94. system("pause");
  95. return 0;
  96. }
複製代碼

TOP

返回列表