Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在学习 C++,我想做的是能够生成伪随机数。我知道你可以,#include <random>但它似乎仍然不稳定(我无法让它工作。)对此事的任何帮助表示赞赏。谢谢。
#include <random>
根据这个问题,#include <random>是一个 C++11 头文件。您可能想检查您的编译器是否支持它,以及是否设置了正确的标志。
不然你看了rand()吗?对于基本的随机数应该足够了。
rand()