返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int n=1 , money=0;
  8.     re1:
  9.     int r,option,buyin;
  10.     int space[4]={0,0,0,0};
  11.     string name[4]={"◆","★","▲","●"};
  12.     srand(time(NULL));
  13.     system("cls");
  14.     cout<<"[好棒棒]賭賽馬場"<<"第"<<n<<"局"<<endl;
  15.     cout<<"-------------------------------------|終點"<<endl;
  16.     cout<<"◆"<<endl;
  17.     cout<<"★"<<endl;
  18.     cout<<"▲"<<endl;
  19.     cout<<"●"<<endl;
  20.     cout<<"可用餘額"<<money<<"元"<<endl<<endl;
  21.     cout<<"(1)買入(2)下注(3)滾 ㊣㊣㊣ 請選擇:";
  22.     cin>>option;
  23.     if(option==1)
  24.     {
  25.         cout<<"買入: ";
  26.         cin>>buyin;
  27.         money=money+buyin;   
  28.         goto re1;
  29.     }   
  30.     system("pause");
  31.     while(true)
  32.     {
  33.         r=rand()%4;
  34.         space[r]++;
  35.         if(space[r]==34)
  36.           break;
  37.         cout<<"比賽進行中"<<endl;
  38.         cout<<"----------------------------------|終點"<<endl;
  39.         for(int j=0;j<space[0];j++)
  40.         cout<<" ";
  41.         cout<<"◆"<<endl;
  42.         for(int j=0;j<space[1];j++)
  43.         cout<<" ";
  44.         cout<<"★"<<endl;
  45.         for(int j=0;j<space[2];j++)
  46.         cout<<" ";
  47.         cout<<"▲"<<endl;
  48.         for(int j=0;j<space[3];j++)
  49.         cout<<" ";
  50.         cout<<"●"<<endl;
  51.         system("cls");
  52.    }
  53.         cout<<"比賽結束"<<endl;
  54.         cout<<"----------------------------------|終點"<<"由"<<name[r]<<"先馳得點"<<endl;
  55.         for(int j=0;j<space[0];j++)
  56.         cout<<" ";
  57.         cout<<"◆"<<endl;
  58.         for(int j=0;j<space[1];j++)
  59.         cout<<" ";
  60.         cout<<"★"<<endl;
  61.         for(int j=0;j<space[2];j++)
  62.         cout<<" ";
  63.         cout<<"▲"<<endl;
  64.         for(int j=0;j<space[3];j++)
  65.         cout<<" ";
  66.         cout<<"●"<<endl;
  67.         n++;
  68.         goto re1;
  69.         system("pause");
  70.         return 0;         
  71. }   
複製代碼

TOP

返回列表