返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int n=1,money=0;
  8.     re:
  9.     system("cls");
  10.     int a=0, b=0, c=0, d=0,sum,choose;
  11.     srand(time(NULL));
  12.     cout<<"「好事成雙」賽馬場 第"<<n<<"局"<<endl;
  13.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  14.     cout<<"◆"<<endl;
  15.     cout<<"★"<<endl;
  16.     cout<<"▲"<<endl;
  17.     cout<<"●"<<endl;
  18.     cout<<"可用餘額:"<<money<<endl;
  19.     cout<<"(1)買入  (2)下注  (3)離開"<<endl;
  20.     cin>>choose;
  21.     if(choose==1){
  22.         cout<<"金額"<<endl;
  23.         cin>>sum;
  24.         money+=sum;
  25.         goto re;
  26.     }

  27.     system("pause");


  28.     while(true){
  29.     system("cls");
  30.     cout<<"比賽中"<<endl;
  31.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;\


  32.     int r=rand()%4;
  33.     if(r==0){
  34.         a++;
  35.     }
  36.     else if(r==1){
  37.         b++;
  38.     }
  39.     else if(r==2){
  40.         c++;
  41.     }
  42.     else if(r==3){
  43.         d++;
  44.     }

  45.     for(int i=1; i<=a; i++){
  46.         cout<<" ";}
  47.     cout<<"◆"<<endl;

  48.     for(int j=1; j<=b; j++){
  49.         cout<<" ";}
  50.     cout<<"★"<<endl;

  51.     for(int k=1; k<=c; k++){
  52.         cout<<" ";}
  53.     cout<<"▲"<<endl;

  54.     for(int l=1; l<=d; l++){
  55.         cout<<" ";}
  56.     cout<<"●"<<endl;
  57.     _sleep(50);
  58.     if((a==73)||(b==73)||(c==73)||(d==73))
  59.         break;
  60.     }
  61.     system("cls");
  62.     if(a==73){
  63.     cout<<"比賽結束,由◆先馳得點"<<endl;
  64.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  65.     }
  66.     if(b==73){
  67.     cout<<"比賽結束,由★先馳得點"<<endl;
  68.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  69.     }
  70.     if(c==73){
  71.     cout<<"比賽結束,由▲先馳得點"<<endl;
  72.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  73.     }
  74.     if(d==73){
  75.     cout<<"比賽結束,由●先馳得點"<<endl;
  76.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  77.     }
  78.     for(int i=1; i<=a; i++){
  79.         cout<<" ";}
  80.     cout<<"◆"<<endl;

  81.     for(int j=1; j<=b; j++){
  82.         cout<<" ";}
  83.     cout<<"★"<<endl;

  84.     for(int k=1; k<=c; k++){
  85.         cout<<" ";}
  86.     cout<<"▲"<<endl;

  87.     for(int l=1; l<=d; l++){
  88.         cout<<" ";}
  89.     cout<<"●"<<endl;
  90.     n++;
  91.     system("pause");
  92.     goto re;
  93.     return 0;
  94. }
複製代碼

TOP

返回列表