返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main(){
  6.     int round=1;   //局數
  7.     int balance=0;   //可用餘額
  8.     int option;   //選項
  9.     int buy;   //買入
  10.     srand(time(NULL));
  11.    
  12.     re:
  13.     system("cls");  
  14.     int r=0;   //0~3
  15.     string p[]={"◆","★","▲","●"};   //存放馬
  16.     int s[]={0,0,0,0};   //每匹馬左側的空白數
  17.    
  18.     cout<<"好事成雙賽馬場 第"<<round<<"局"<<endl;
  19.     cout<<"--------------------------------------------------------------------|終點"<<endl;
  20.     for(int i=0;i<=3;i++)
  21.         cout<<p[i]<<endl;
  22.     cout<<"可用餘額:"<<balance<<"元"<<endl<<endl;
  23.     cout<<"(1)買入 (2)下注 (3)離開  請選擇:";
  24.     cin>>option;
  25.    
  26.     if(option==1){
  27.         cout<<"買入:";
  28.         cin>>buy;
  29.         balance+=buy;
  30.         goto re;
  31.     }
  32.     system("pause");
  33.     while(s[r]<70){   //只要有任何一匹馬到達終點,迴圈就會停下來
  34.         r=rand()%4;   //r=0~3
  35.         s[r]++;
  36.         system("cls");
  37.         cout<<"比賽進行中"<<endl;
  38.         cout<<"--------------------------------------------------------------------|終點"<<endl;
  39.         for(int j=0;j<=3;j++){
  40.             for(int i=0;i<s[j];i++)
  41.                 cout<<" ";
  42.             cout<<p[j]<<endl;
  43.         }
  44.         _sleep(10);
  45.     }
  46.     system("cls");
  47.     cout<<"比賽結束! 由"<<p[r]<<"勝出!"<<endl;
  48.     cout<<"--------------------------------------------------------------------|終點"<<endl;
  49.     for(int j=0;j<=3;j++){
  50.         for(int i=0;i<s[j];i++)
  51.             cout<<" ";
  52.         cout<<p[j]<<endl;
  53.     }
  54.     system("pause");
  55.     round++;   //局數+1
  56.     goto re;
  57.     return 0;
  58. }
複製代碼

TOP

返回列表