返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int e=1,balance=0;
  7.     re1:
  8.     int a=0, b=0, c=0, d=0, r, option, buyin;
  9.     system("cls");
  10.     cout<<"gg賽馬場 第 "<<e<<" 局"<<endl;
  11.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  12.     cout<<"◆"<<endl;
  13.     cout<<"★"<<endl;
  14.     cout<<"▲"<<endl;
  15.     cout<<"●"<<endl;
  16.     cout<<"(1)買入 (2)下注 (3)離開  請選擇:";
  17.     cin>>option;
  18.     if(option==1)

  19.     {
  20.         cout<<"買入: ";
  21.         cin>>buyin;
  22.         balance+=buyin;   

  23.         goto re1;

  24.     }

  25.     system("pause");
  26.     system("cls");
  27.     srand(time(NULL));
  28.     while(a!=75 && b!=75 && c!=75 && d!=75)
  29.     {
  30.         r=rand()%4;   
  31.         if(r==0)
  32.             a++;
  33.         else if(r==1)
  34.             b++;
  35.         else if(r==2)
  36.             c++;
  37.         else
  38.             d++;
  39.         cout<<"比賽進行中"<<endl;
  40.         cout<<"------------------------------------------------------------------------| 終點"<<endl;
  41.         for(int i=1; i<=a; i++)
  42.             cout<<" ";
  43.         cout<<"◆"<<endl;
  44.         for(int i=1; i<=b; i++)
  45.             cout<<" ";
  46.         cout<<"★"<<endl;
  47.         for(int i=1; i<=c; i++)
  48.             cout<<" ";
  49.         cout<<"▲"<<endl;
  50.         for(int i=1; i<=d; i++)
  51.             cout<<" ";
  52.         cout<<"●"<<endl;   
  53.         system("cls");      
  54.     }
  55.     cout<<"比賽結束! 由 ";
  56.     if(a==75)
  57.         cout<<"◆";
  58.     else if(b==75)
  59.         cout<<"★";
  60.     else if(c==75)
  61.         cout<<"▲";
  62.     else
  63.         cout<<"●";
  64.     cout<<" 獲勝!"<<endl;
  65.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  66.     for(int i=1; i<=a; i++)
  67.         cout<<" ";
  68.     cout<<"◆"<<endl;
  69.     for(int i=1; i<=b; i++)
  70.         cout<<" ";
  71.     cout<<"★"<<endl;
  72.     for(int i=1; i<=c; i++)
  73.         cout<<" ";
  74.     cout<<"▲"<<endl;
  75.     for(int i=1; i<=d; i++)
  76.         cout<<" ";
  77.     cout<<"●"<<endl;
  78.     system("pause");
  79.     e++;
  80.     goto re1;
  81.     system("pause");
  82.     return 0;   
  83. }
複製代碼

TOP

返回列表