可能的重复:
在整个范围内均匀生成随机数
我想在 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 ) )
这篇关于某个范围内的随机数 c++的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!