這篇文章主要介紹了C++基于隨機數如何實現福彩雙色球,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
創(chuàng)新互聯(lián)公司是專業(yè)的陽新網站建設公司,陽新接單;提供網站制作、做網站,網頁設計,網站設計,建網站,PHP網站建設等專業(yè)做網站服務;采用PHP框架,可快速的進行陽新網站開發(fā)網頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網站,專業(yè)的做網站團隊,希望更多企業(yè)前來合作!具體如下:
這是前段時間寫的福彩雙色球一個小應用
本來可以一個文件搞定,反正也沒多大,就分開了.
頭文件doubleColorBallR2.h
#ifndef _DoubleColorBallR2_h #define _DoubleColorBallR2_h #include#include #include #include #include "windows.h" #include
#ifndef _RED_ZONE_ #define _RED_ZONE_ 33 #endif #ifndef _BLUE_ZONE_ #define _BLUE_ZONE_ 16 #endif #ifndef _RED_NUM_ #define _RED_NUM_ 6 #endif #ifndef _BLUE_NUM_ #define _BLUE_NUM_ 1 #endif using namespace std; class DoubleColorBallR2 { public: DoubleColorBallR2(){ } ~DoubleColorBallR2(){ } void getRedZone(); void getBlueZone(); private: }; #endif
實現文件 doubleColorBallR2.cpp
#include "doubleColorBallR2.h" void DoubleColorBallR2::getRedZone(){ vectorv_red; //選擇數的范圍 1-_RED_ZONE_ list l_red; //裝入1-_RED_NUM_個數 for (int i=1; i <= _RED_ZONE_; ++i) { v_red.push_back(i); } srand((unsigned)GetCurrentTime()); int j=_RED_ZONE_; for (int i=1; i<=_RED_NUM_; ++i) { int n=1+rand()%(j-1+1); l_red.push_back(v_red[n]); //裝入 //刪除v_red已裝入的數 vector ::iterator iter=find(v_red.begin(), v_red.end(), v_red[n]); v_red.erase(iter); --j; //由于v_red已經刪除了一位數,所以隨機數取值范圍要減少一位 } l_red.sort(); for (list ::iterator i=l_red.begin(); i!=l_red.end(); ++i) { cout<<*i<<" "; } } void DoubleColorBallR2::getBlueZone(){ vector v_blue; //選擇數的范圍 1-_BLUE_ZONE_ list l_blue; //裝入1-_BLUE_NUM_個數 for (int i=1; i <= _BLUE_ZONE_; ++i) { v_blue.push_back(i); } srand((unsigned)GetCurrentTime()); int j=_BLUE_ZONE_; for (int i=1; i<=_BLUE_NUM_; ++i) { int n=1+rand()%(j-1+1); l_blue.push_back(v_blue[n]); //裝入 //刪除v_red已裝入的數 vector ::iterator iter=find(v_blue.begin(), v_blue.end(), v_blue[n]); v_blue.erase(iter); --j; //由于v_red已經刪除了一位數,所以隨機數取值范圍要減少一位 } l_blue.sort(); for (list ::iterator i=l_blue.begin(); i!=l_blue.end(); ++i) { cout<<*i<<" "; } }
主程序 doubleColorBall.cpp
#include#include #include "windows.h" #include
#include "doubleColorBallR2.h" #define RED_ZONE 33 //紅區(qū) #define BLUE_ZONE 16 //藍區(qū) #define RED_NUM 6 //紅區(qū)位數 #define BLUE_NUM 1 //藍區(qū)位數 using namespace std; int main (int argc, char *argv[]) { DoubleColorBallR2 dcb; dcb.getRedZone(); dcb.getBlueZone(); getchar(); return(0); }
感謝你能夠認真閱讀完這篇文章,希望小編分享的“C++基于隨機數如何實現福彩雙色球”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián)建站,關注創(chuàng)新互聯(lián)網站建設公司行業(yè)資訊頻道,更多相關知識等著你來學習!
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)建站www.cdcxhl.com,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。