返回列表 發帖
  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;
  9.     string n[]={"◆","★","㊣","▼"};
  10.     srand(time(NULL));
  11.     cout<<"第"<<x<<"場[萬事如意]賽馬場"<<endl;
  12.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  13.     cout<<"◆"<<endl;
  14.     cout<<"★"<<endl;
  15.     cout<<"㊣"<<endl;
  16.     cout<<"▼"<<endl<<endl;
  17.     cout<<"可用餘額:"<<mony<<"元"<<endl;
  18.     cout<<"(1)買入(2)下注(3)離開 請選擇:";
  19.     cin>>many;
  20.     if(many==1)
  21.     {
  22.         int tim;
  23.         cout<<"買入:";
  24.         cin>>tim;
  25.         mony=mony+tim;
  26.         system("cls");
  27.         goto re;
  28.     }else
  29.     {
  30.         cout<<"輸入錯誤";
  31.         system("cls");
  32.         goto re;
  33.     }
  34.     system("pause");
  35.     while(a!=70 && b!=70 && c!=70 && d!=70)
  36.     {
  37.                 cout<<"比賽中"<<endl;
  38.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  39.         z=rand()%4+1;
  40.         if(z==1)
  41.         {
  42.             a+=2;
  43.         }
  44.         if(z==2)
  45.         {
  46.             b+=2;
  47.         }
  48.         if(z==3)
  49.         {
  50.             c+=2;
  51.         }
  52.         if(z==4)
  53.         {
  54.             d+=2;
  55.         }
  56.         for(int i=0; i<=a; i++)
  57.         {
  58.             cout<<" ";
  59.         }
  60.         cout<<"◆"<<endl;
  61.         
  62.         for(int i=0; i<=b; i++)
  63.         {
  64.             cout<<" ";
  65.         }
  66.         cout<<"★"<<endl;
  67.         
  68.         for(int i=0; i<=c; i++)
  69.         {
  70.             cout<<" ";
  71.         }
  72.         cout<<"㊣"<<endl;
  73.         
  74.         for(int i=0; i<=d; i++)
  75.         {
  76.             cout<<" ";
  77.         }
  78.         cout<<"▼"<<endl;
  79.         
  80.         system("cls");
  81.     }
  82.    
  83.     cout<<"第"<<x<<"場比賽結束   由"<<n[z-1]<<"先馳得點!"<<endl;
  84.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  85.      for(int i=0; i<=a; i++)
  86.         {
  87.             cout<<" ";
  88.         }
  89.         cout<<"◆"<<endl;
  90.         
  91.         for(int i=0; i<=b; i++)
  92.         {
  93.             cout<<" ";
  94.         }
  95.         cout<<"★"<<endl;
  96.         
  97.         for(int i=0; i<=c; i++)
  98.         {
  99.             cout<<" ";
  100.         }
  101.         cout<<"㊣"<<endl;
  102.         
  103.         for(int i=0; i<=d; i++)
  104.         {
  105.             cout<<" ";
  106.         }
  107.         cout<<"▼"<<endl;
  108.         
  109.         cout<<"按任意鍵進行下一場比賽"<<endl;
  110.         system("pause");
  111.         system("cls");
  112.         x++;
  113.         goto re;
  114.     system("pause");
  115.     return 0;
  116. }
複製代碼

TOP

返回列表