某个范围内的随机数 c++

2021-12-21 00:00:00 random c++

可能的重复:
在整个范围内均匀生成随机数

我想在 C++ 中生成某个范围内的随机数,比如说我想要 25 到 63 之间的数字.

I want to generate the random number in c++ with in some range let say i want to have number between 25 and 63.

我怎么能拥有它?

推荐答案

您可以使用标准库 (TR1) 的附加功能中包含的随机功能.或者您可以使用在普通 C 中工作的相同旧技术:

You can use the random functionality included within the additions to the standard library (TR1). Or you can use the same old technique that works in plain C:

25 + ( std::rand() % ( 63 - 25 + 1 ) )

相关文章