Board logo

標題: 賽馬程式 (四) [打印本頁]

作者: 鄭繼威    時間: 2023-1-4 21:15     標題: 賽馬程式 (四)

本帖最後由 鄭繼威 於 2023-3-4 20:57 編輯

加入首頁選單, 新增買入(儲值)的功能, 執行畫面如下:

(1)買入 (2)下注 (3)離開 請選擇:

在使用者輸入數值後, 畫面更新如下:
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.         int round=1;        //局數
  8.         int balance=0;        //餘額
  9.         int option;        //選項
  10.         int buy;  //儲值金額
  11.     re:
  12.     system("cls");
  13.     srand(time(NULL));
  14.     int s[]={0,0,0,0};        //存放進度用的
  15.     string p[]={"◆","★","▲","●"};        //存放馬用的
  16.     int r=0;
  17.     cout<<"「好事成雙」賽馬場 第"<<round<<"局"<<endl;
  18.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  19.     for(int i=0; i<4; i++)
  20.         cout<<p[i]<<endl;        //把馬印出來
  21.    
  22.         cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;
  23.     cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
  24.     cin>>option;
  25.     //輸入等於1執行買入(儲值)
  26.         if(option==1){
  27.             //買入
  28.             cout<<"買入: ";
  29.             cin>>buy;
  30.             balance=balance+buy;        //儲值
  31.             goto re;
  32.         }
  33.    
  34.         system("pause");
  35.     system("cls");        //清空畫面
  36.     while(s[r]<=73)        //開始賽馬
  37.     {
  38.         r=rand()%4;   //0~3        (抽馬)
  39.         s[r]++;        //看電腦抽到哪隻馬就+1
  40.         cout<<"比賽進行中"<<endl;
  41.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  42.         for(int i=0; i<4; i++)
  43.         {
  44.             for(int j=0; j<s[i]; j++)
  45.                 cout<<" ";        //印空格(看進度是多少就印多少空格)
  46.             cout<<p[i]<<endl;        //把馬印出來
  47.         }
  48.         _sleep(50);
  49.         system("cls");
  50.     }
  51.     cout<<"比賽結束!  由 "<<p[r]<<" 先馳得點!"<<endl;
  52.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  53.     for(int i=0; i<4; i++)
  54.     {
  55.            
  56.         for(int j=0; j<s[i]; j++)
  57.             cout<<" ";
  58.         cout<<p[i]<<endl;
  59.     }
  60.     system("pause");
  61.     round++;        //局數+1
  62.     goto re;
  63.     return 0;
  64. }
複製代碼

作者: 林劭澧    時間: 2023-1-11 20:16

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.         int round=1;        //局數
  8.         int balance=0;        //餘額
  9.         int option;        //選項
  10.         int buy;
  11.     re:
  12.     system("cls");
  13.     srand(time(NULL));
  14.     int s[]={0,0,0,0};        //存放進度用的
  15.     string p[]={"◆","★","▲","●"};        //存放馬用的
  16.     int r=0;
  17.     cout<<"「好事成雙」賽馬場 第"<<round<<"局"<<endl;
  18.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  19.     for(int i=0; i<4; i++)
  20.         cout<<p[i]<<endl;        //把馬印出來
  21.    
  22.         cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;
  23.     cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
  24.     cin>>option;
  25.     //輸入等於1執行買入(儲值)
  26.         if(option==1){
  27.             //買入
  28.             cout<<"買入: ";
  29.             cin>>buy;
  30.             balance=balance+buy;        //儲值
  31.             goto re;
  32.         }
  33.    
  34.         system("pause");
  35.     system("cls");        //清空畫面
  36.     while(s[r]<=73)        //開始賽馬
  37.     {
  38.         r=rand()%4;   //0~3        (抽馬)
  39.         s[r]++;        //看電腦抽到哪隻馬就+1
  40.         cout<<"比賽進行中"<<endl;
  41.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  42.         for(int i=0; i<4; i++)
  43.         {
  44.             for(int j=0; j<s[i]; j++)
  45.                 cout<<" ";        //印空格(看進度是多少就印多少空格)
  46.             cout<<p[i]<<endl;        //把馬印出來
  47.         }
  48.         _sleep(50);
  49.         system("cls");
  50.     }
  51.     cout<<"比賽結束!  由 "<<p[r]<<" 先馳得點!"<<endl;
  52.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  53.     for(int i=0; i<4; i++)
  54.     {
  55.            
  56.         for(int j=0; j<s[i]; j++)
  57.             cout<<" ";
  58.         cout<<p[i]<<endl;
  59.     }
  60.     system("pause");
  61.     round++;        //局數+1
  62.     goto re;
  63.     return 0;
  64. }
複製代碼

作者: 李彣    時間: 2023-1-11 20:16

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int r=0, n=1, b, buy, option;   
  8.     re:
  9.     system("cls");
  10.     srand(time(NULL));
  11.     int s[]={0,0,0,0};
  12.     string p[]={"◆","★","▲","●"};
  13.     cout<<"「好事成雙」賽馬場 第"<<n<<"局"<<endl;
  14.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  15.     for(int i=0; i<4; i++)
  16.     {
  17.         cout<<p[i]<<endl;
  18.     }
  19.     cout<<"餘額"<<b<<"元"<<endl;
  20.     cout<<"(1)儲值(2)下注(3)離開 請選擇:";
  21.     cin>>option;
  22.     if(option==1)
  23.     {
  24.         cout<<"儲值:";
  25.         cin>>buy;
  26.         b=b+buy;
  27.         goto re;
  28.     }
  29.     system("pause");
  30.     system("cls");
  31.     while(s[r]<=73)
  32.     {
  33.         r=rand()%4;
  34.         s[r]++;
  35.         cout<<"比賽進行中"<<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.         _sleep(50);
  44.         system("cls");
  45.     }
  46.     cout<<"比賽結束 "<<p[r]<<"贏"<<endl;
  47.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  48.     for(int i=0; i<4; i++)
  49.     {
  50.            
  51.         for(int j=0; j<s[i]; j++)
  52.             cout<<" ";
  53.         cout<<p[i]<<endl;
  54.     }
  55.     n++;
  56.     system("pause");
  57.     goto re;
  58.     return 0;
  59. }
複製代碼

作者: 連翊恩    時間: 2023-1-11 20:20

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

作者: 林劭杰    時間: 2023-1-11 20:21

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.         int round=1;        
  8.         int balance=0;      
  9.         int option;        
  10.         int buy;
  11.     re:
  12.     system("cls");
  13.     srand(time(NULL));
  14.     int s[]={0,0,0,0};      
  15.     string p[]={"◆","★","▲","●"};     
  16.     int r=0;
  17.     cout<<"「好事成雙」賽馬場 第"<<round<<"局"<<endl;
  18.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  19.     for(int i=0; i<4; i++)
  20.         cout<<p[i]<<endl;     
  21.         
  22.         cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;
  23.     cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
  24.     cin>>option;

  25.         if(option==1){
  26.             
  27.             cout<<"買入: ";
  28.             cin>>buy;
  29.             balance=balance+buy;        
  30.             goto re;
  31.         }
  32.    
  33.         system("pause");
  34.     system("cls");      
  35.     while(s[r]<=73)        
  36.     {
  37.         r=rand()%4;   
  38.         s[r]++;      
  39.         cout<<"比賽進行中"<<endl;
  40.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  41.         for(int i=0; i<4; i++)
  42.         {
  43.             for(int j=0; j<s[i]; j++)
  44.                 cout<<" ";      
  45.             cout<<p[i]<<endl;      
  46.         }
  47.         _sleep(50);
  48.         system("cls");
  49.     }
  50.     cout<<"比賽結束!  由 "<<p[r]<<" 先馳得點!"<<endl;
  51.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  52.     for(int i=0; i<4; i++)
  53.     {
  54.            
  55.         for(int j=0; j<s[i]; j++)
  56.             cout<<" ";
  57.         cout<<p[i]<<endl;
  58.     }
  59.     system("pause");
  60.     round++;      
  61.     goto re;
  62.     return 0;
  63. }
複製代碼

作者: 黃裕恩    時間: 2023-1-17 21:28

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





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2