溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

C++編程如何實(shí)現(xiàn)產(chǎn)生指定范圍內(nèi)的隨機(jī)數(shù)

發(fā)布時(shí)間:2020-08-03 10:51:02 來(lái)源:億速云 閱讀:425 作者:小豬 欄目:編程語(yǔ)言

這篇文章主要講解了C++編程如何實(shí)現(xiàn)產(chǎn)生指定范圍內(nèi)的隨機(jī)數(shù),內(nèi)容清晰明了,對(duì)此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會(huì)有幫助。

C/C++編程產(chǎn)生指定范圍內(nèi)的隨機(jī)數(shù),直接上個(gè)小程序:

#include <stdlib.h>
#include <time.h>
#include <stdio.h>
#include <string>
#include <string.h>
 
/*
 * 獲取隨機(jī)數(shù)
 * return : 隨機(jī)數(shù)
 */
int commonGetRandNumber(const int low, const int high)
{
 int randNum = 0;
 
 //生成隨機(jī)數(shù)
 randNum = rand() % (high - low + 1) + low;
 
 return randNum;
}
 
#define RAND_MAX_LEN (16)
#define RAND_MIN_VALUE (0)
#define RAND_MAX_VALUE (9999)
 
/*
 * 獲取隨機(jī)數(shù)的字符串形式
 * return : 隨機(jī)數(shù)字符串
 */
std::string commonGetRandString()
{
 int low = RAND_MIN_VALUE;
 int high = RAND_MAX_VALUE;
 int randNum = 0;
 char randArray[RAND_MAX_LEN] = {0};
 std::string randStr;
 
 //生成隨機(jī)數(shù)
 srand(time(0));
 randNum = commonGetRandNumber(low, high);
 
 snprintf(randArray, sizeof(randArray)-1, "%d", randNum);
 
 randStr = randArray;
 
 return randStr;
}
 
/*
 * 獲取根據(jù)給定字符數(shù)組和隨機(jī)數(shù)生成隨機(jī)字符串
 */
std::string getNonceStr(int length = 32)
{
 std::string chars = "abcdefghijklmnopqrstuvwxyz0123456789";
 std::string str = "";
 
 //生成隨機(jī)數(shù)
 srand(time(0));
 for ( int i = 0; i < length; i++ )
 {
 str += chars.substr(commonGetRandNumber(0, chars.size() - 1), 1);
 }
 
 return str;
}
 
 
int main()
{
 
 //獲取隨機(jī)數(shù)
 srand(time(0));
 int randNum = commonGetRandNumber(10, 100);
 printf("randNum=%d\n", randNum);
 
 //獲取隨機(jī)數(shù)的字符串形式
 std::string randStr = commonGetRandString();
 printf("randStr=%s\n", randStr.c_str());
 
 //獲取根據(jù)給定字符數(shù)組和隨機(jī)數(shù)生成隨機(jī)字符串
 std::string randChar = getNonceStr();
 printf("randChar=%s\n", randChar.c_str());
 
}

調(diào)用rand()會(huì)產(chǎn)生[0,32757]之間的隨機(jī)數(shù),(high - low)的絕對(duì)值不能超過(guò)32767。

看完上述內(nèi)容,是不是對(duì)C++編程如何實(shí)現(xiàn)產(chǎn)生指定范圍內(nèi)的隨機(jī)數(shù)有進(jìn)一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI