返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     re:
  8.     system("cls");      
  9.     int s[]={0,0,0,0};   
  10.     srand(time(NULL));
  11.     cout<<"「好事成雙」賽馬場"<<endl;
  12.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;

  13.     //把馬印出來
  14.     cout<<"◆"<<endl;
  15.     cout<<"★"<<endl;
  16.     cout<<"▲"<<endl;
  17.     cout<<"●"<<endl;
  18.     system("pause");
  19.     while(true)
  20.     {
  21.         system("cls");   
  22.         int r=rand()%4;  )
  23.         s[r]++;      
  24.         cout<<"比賽進行中"<<endl;
  25.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  26.         for(int i=0; i<=s[0]; i++)
  27.             cout<<" ";
  28.         cout<<"◆"<<endl;
  29.         for(int i=0; i<=s[1]; i++)
  30.             cout<<" ";
  31.         cout<<"★"<<endl;
  32.         for(int i=0; i<=s[2]; i++)
  33.             cout<<" ";
  34.         cout<<"▲"<<endl;
  35.         for(int i=0; i<=s[3]; i++)
  36.             cout<<" ";
  37.         cout<<"●"<<endl;
  38.         if(s[r]==73)
  39.             break;
  40.         _sleep(50);                     
  41.     }
  42.     system("cls");
  43.     cout<<"比賽結束"<<endl;
  44.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  45.     for(int i=0; i<=s[0]; i++)
  46.         cout<<" ";
  47.     cout<<"◆"<<endl;
  48.     for(int i=0; i<=s[1]; i++)
  49.         cout<<" ";
  50.     cout<<"★"<<endl;
  51.     for(int i=0; i<=s[2]; i++)
  52.         cout<<" ";
  53.     cout<<"▲"<<endl;
  54.     for(int i=0; i<=s[3]; i++)
  55.         cout<<" ";
  56.     cout<<"●"<<endl;
  57.     system("pause");
  58.     goto re;
  59.     return 0;
  60. }
複製代碼

TOP

  1. #include<iostream>哥哥
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7. int round=1;           
  8.     re:
  9.     system("cls");
  10.     srand(time(NULL));
  11.     int s[]={0,0,0,0};        
  12.     string p[]={"◆","★","▲","●"};        
  13.     int r=0;
  14.     cout<<"「好事成雙」賽馬場 第"<<round<<"局"<<endl;
  15.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  16.     for(int i=0; i<4; i++)
  17.     cout<<p[i]<<endl;      
  18.     system("pause");
  19.     system("cls");        
  20.     while(s[r]<=73)        
  21.     {
  22.     r=rand()%4;   
  23.     s[r]++;      
  24.     cout<<"比賽進行中"<<endl;
  25.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  26.     for(int i=0; i<4; i++)
  27.     {
  28.     for(int j=0; j<s[i]; j++)
  29.     cout<<" ";        
  30.     cout<<p[i]<<endl;      
  31.     }
  32.     _sleep(50);
  33.     system("cls");
  34.     }
  35.     cout<<"比賽結束!  由 "<<p[r]<<" 先馳得點!"<<endl;
  36.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  37.     for(int i=0; i<4; i++)
  38.     {     
  39.     for(int j=0; j<s[i]; j++)
  40.     cout<<" ";
  41.     cout<<p[i]<<endl;
  42.     }
  43.     system("pause");
  44.     round++;        
  45.     goto re;
  46.     return 0;
  47. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int n=1, balance=0;
  8.     int option, buyin, bet, player;
  9.     re:
  10.     system("cls");
  11.     srand(time(NULL));
  12.     int s[]={0,0,0,0};
  13.     string p[]={"◆","★","▲","●"};
  14.     int r=0;
  15.     cout<<"「好事成雙」賽馬場  第 "<<n<<" 局"<<endl;
  16.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  17.     for(int i=0; i<4; i++)
  18.         cout<<p[i]<<endl;
  19.     cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;
  20.     cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
  21.     cin>>option;
  22.     if(option==1)
  23.     {
  24.         cout<<"買入: ";
  25.         cin>>buyin;
  26.         if(buyin<=0)
  27.         {
  28.              cout<<"輸入錯誤!";
  29.              _sleep(1500);
  30.              goto re;     
  31.         }
  32.         balance+=buyin;
  33.         goto re;         
  34.     }
  35.     else if(option==2)
  36.     {
  37.         cout<<"下注: ";
  38.         cin>>bet;
  39.         if(bet<=0)
  40.         {
  41.              cout<<"輸入錯誤!";
  42.              _sleep(1500);
  43.              goto re;     
  44.         }
  45.         if(bet>balance)
  46.         {
  47.              cout<<"可用餘額不足,請先買入!";
  48.              _sleep(1500);
  49.              goto re;     
  50.         }
  51.         cout<<endl<<"(1)◆ (2)★ (3)▲ (4)● 請選擇: ";
  52.         cin>>player;
  53.         cout<<"比賽即將開始..."<<endl<<endl;         
  54.     }
  55.     else if(option==3)
  56.     {
  57.         goto end;         
  58.     }
  59.     else
  60.     {
  61.         cout<<"輸入錯誤!";
  62.         _sleep(1500);
  63.         goto re;
  64.     }
  65.     system("pause");
  66.     system("cls");
複製代碼

TOP

返回列表