返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main(){
  6.    
  7.     int round=1;
  8.     int balance=0;
  9.     int money=0;
  10.     re:
  11.     system("cls");
  12.     srand(time(NULL));
  13.     string p[]={"◆","★","▲","●"};
  14.     int s[]={0,0,0,0};
  15.     int r=0;
  16.     int choice;
  17.     cout<<"歡迎光臨騙你錢賽馬場 | 賽馬第"<<round<<"局"<<endl;
  18.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  19.     for(int i=0; i<4; i++)
  20.         cout<<p[i]<<endl;
  21.         
  22.     cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;
  23.     cout<<"(1)買入(儲值) (2)下注 (3)離開 請選擇:";
  24.     cin>>choice;
  25.    
  26.     if(choice==1){
  27.        cout<<"請問要加值多少錢:";
  28.        cin>>money;
  29.        balance=balance+money;
  30.        goto re;
  31.     }
  32.    
  33.     system("pause");
  34.     system("cls");
  35.     while(s[r]<=73)
  36.     {
  37.         r=rand()%4;   //0~3
  38.         s[r]++;
  39.         cout<<"比賽進行中"<<endl;
  40.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  41.         for(int i=0; i<4; i++)
  42.         {
  43.             for(int j=0; j<s[i]; j++)
  44.                 cout<<" ";
  45.             cout<<p[i]<<endl;
  46.         }
  47.         system("cls");
  48.     }
  49.     cout<<"比賽結束!由"<<p[r]<<"獲勝!"<<endl;
  50.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  51.     for(int i=0; i<4; i++)
  52.     {
  53.         for(int j=0; j<s[i]; j++)
  54.             cout<<" ";
  55.         cout<<p[i]<<endl;
  56.     }
  57.     round++;
  58.     system("pause");
  59.     goto re;
  60.     return 0;
  61. }
複製代碼

TOP

返回列表