gpt4 book ai didi

c++ - 如何在 C++ 中生成非常大的随机数

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:05:26 25 4
gpt4 key购买 nike

我想使用 C++ 生成 0 - 2^64 范围内的非常大的随机数。我使用了 rand() 函数,但它没有生成非常大的数字。谁能帮忙?

最佳答案

对于 c++11,使用标准 random library of c++11 ,你可以这样做:

#include <iostream>
#include <random>

int main()
{
/* Seed */
std::random_device rd;

/* Random number generator */
std::default_random_engine generator(rd());

/* Distribution on which to apply the generator */
std::uniform_int_distribution<long long unsigned> distribution(0,0xFFFFFFFFFFFFFFFF);

for (int i = 0; i < 10; i++) {
std::cout << distribution(generator) << std::endl;
}

return 0;
}

Live Demo

关于c++ - 如何在 C++ 中生成非常大的随机数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37396278/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com