返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=1 ,mony=0 ,many;
  7.     re:
  8.     int a=0 ,b=0 ,c=0 ,d=0 ,z ,win ,buy ,bird ,n;
  9.     srand(time(NULL));
  10.     cout<<"第"<<x<<"場[萬事如意]賽馬場"<<endl;
  11.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  12.     cout<<"◆"<<endl;
  13.     cout<<"★"<<endl;
  14.     cout<<"㊣"<<endl;
  15.     cout<<"▼"<<endl<<endl;
  16.     cout<<"可用餘額:"<<mony<<"元"<<endl;
  17.     cout<<"(1)買入(2)下注(3)離開 請選擇:";
  18.     cin>>z;
  19.     if(z==1)
  20.     {
  21.         cout<<"買入:";
  22.         cin>>buy;
  23.         mony=mony+buy;
  24.         system("cls");
  25.         goto re;
  26.     }else if(z==2)
  27.     {
  28.         if(mony==0)
  29.         {
  30.             cout<<"餘額不足!請先買入!";
  31.             system("pause");
  32.             system("cls");
  33.             goto re;
  34.         }
  35.         cout<<"下注:";
  36.         cin>>bird;
  37.         if(bird>mony)
  38.         {
  39.             cout<<"餘額不足!請先買入!";
  40.             system("pause");
  41.             system("cls");
  42.             goto re;
  43.         }else if(bird<=mony)
  44.         {
  45.             cout<<"(1)■(2)★(3)㊣(4)▼ 請選擇:";
  46.             cin>>many;
  47.             cout<<"比賽即將開始>>>"<<endl<<endl;
  48.             system("pause");
  49.         }
  50.     }else if(z==3)
  51.     {
  52.         goto go;
  53.     }else
  54.     {
  55.         cout<<"輸入錯誤";
  56.         system("pause");
  57.         system("cls");
  58.         goto re;
  59.     }
  60.     system("pause");
  61.     while(a!=70 && b!=70 && c!=70 && d!=70)
  62.     {
  63.                 cout<<"比賽中"<<endl;
  64.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  65.         z=rand()%4+1;
  66.         if(z==1)
  67.         {
  68.             a+=2;
  69.         }
  70.         if(z==2)
  71.         {
  72.             b+=2;
  73.         }
  74.         if(z==3)
  75.         {
  76.             c+=2;
  77.         }
  78.         if(z==4)
  79.         {
  80.             d+=2;
  81.         }
  82.         for(int i=0; i<=a; i++)
  83.         {
  84.             cout<<" ";
  85.         }
  86.         cout<<"◆"<<endl;
  87.         
  88.         for(int i=0; i<=b; i++)
  89.         {
  90.             cout<<" ";
  91.         }
  92.         cout<<"★"<<endl;
  93.         
  94.         for(int i=0; i<=c; i++)
  95.         {
  96.             cout<<" ";
  97.         }
  98.         cout<<"㊣"<<endl;
  99.         
  100.         for(int i=0; i<=d; i++)
  101.         {
  102.             cout<<" ";
  103.         }
  104.         cout<<"▼"<<endl;
  105.         
  106.         system("cls");
  107.     }
  108.    
  109.     cout<<"第"<<x<<"場比賽結束   由";
  110.     if(a==70)
  111.     {
  112.        cout<<"◆";
  113.         win=1;
  114.     }else if(b==70)
  115.     {
  116.           cout<<"★";
  117.         win=2;
  118.     }else if(c==70)
  119.     {
  120.           cout<<"㊣";
  121.         win=3;
  122.     }else
  123.     {
  124.          cout<<"▼";
  125.         win=4;
  126.     }
  127.     cout<<"先馳得點!"<<endl;
  128.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  129.    
  130.      for(int i=0; i<=a; i++)
  131.         {
  132.             cout<<" ";
  133.         }
  134.         cout<<"◆"<<endl;
  135.         
  136.         for(int i=0; i<=b; i++)
  137.         {
  138.             cout<<" ";
  139.         }
  140.         cout<<"★"<<endl;
  141.         
  142.         for(int i=0; i<=c; i++)
  143.         {
  144.             cout<<" ";
  145.         }
  146.         cout<<"㊣"<<endl;
  147.         
  148.         for(int i=0; i<=d; i++)
  149.         {
  150.             cout<<" ";
  151.         }
  152.         cout<<"▼"<<endl;
  153.         
  154.         cout<<"按任意鍵進行下一場比賽"<<endl;
  155.         if(win=many)
  156.         {
  157.             mony=mony+bird*3;
  158.         }else
  159.         {
  160.             mony=mony-bird;
  161.         }
  162.         system("pause");
  163.         system("cls");
  164.         x++;
  165.         goto re;
  166.         go:
  167.     system("pause");
  168.     return 0;
  169. }
複製代碼

TOP

返回列表