<i id='Q4pVB'><tr id='Q4pVB'><dt id='Q4pVB'><q id='Q4pVB'><span id='Q4pVB'><b id='Q4pVB'><form id='Q4pVB'><ins id='Q4pVB'></ins><ul id='Q4pVB'></ul><sub id='Q4pVB'></sub></form><legend id='Q4pVB'></legend><bdo id='Q4pVB'><pre id='Q4pVB'><center id='Q4pVB'></center></pre></bdo></b><th id='Q4pVB'></th></span></q></dt></tr></i><div id='Q4pVB'><tfoot id='Q4pVB'></tfoot><dl id='Q4pVB'><fieldset id='Q4pVB'></fieldset></dl></div>

    <legend id='Q4pVB'><style id='Q4pVB'><dir id='Q4pVB'><q id='Q4pVB'></q></dir></style></legend>
    <tfoot id='Q4pVB'></tfoot>
        <bdo id='Q4pVB'></bdo><ul id='Q4pVB'></ul>

    1. <small id='Q4pVB'></small><noframes id='Q4pVB'>

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

      Random number c++ in some range(某个范围内的随机数 c++)
      <i id='2DZag'><tr id='2DZag'><dt id='2DZag'><q id='2DZag'><span id='2DZag'><b id='2DZag'><form id='2DZag'><ins id='2DZag'></ins><ul id='2DZag'></ul><sub id='2DZag'></sub></form><legend id='2DZag'></legend><bdo id='2DZag'><pre id='2DZag'><center id='2DZag'></center></pre></bdo></b><th id='2DZag'></th></span></q></dt></tr></i><div id='2DZag'><tfoot id='2DZag'></tfoot><dl id='2DZag'><fieldset id='2DZag'></fieldset></dl></div>

            <tbody id='2DZag'></tbody>

            <small id='2DZag'></small><noframes id='2DZag'>

              <bdo id='2DZag'></bdo><ul id='2DZag'></ul>

              1. <legend id='2DZag'><style id='2DZag'><dir id='2DZag'><q id='2DZag'></q></dir></style></legend><tfoot id='2DZag'></tfoot>
                本文介绍了某个范围内的随机数 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 ) )
                

                这篇关于某个范围内的随机数 c++的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Consistent pseudo-random numbers across platforms(跨平台一致的伪随机数)
                Vary range of uniform_int_distribution(改变uniform_int_distribution的范围)
                What is a seed in terms of generating a random number?(就生成随机数而言,种子是什么?)
                Is 1.0 a valid output from std::generate_canonical?(1.0 是 std::generate_canonical 的有效输出吗?)
                Getting big random numbers in C/C++(在 C/C++ 中获取大随机数)
                What is the best way to generate random numbers in C++?(在 C++ 中生成随机数的最佳方法是什么?)
                • <tfoot id='K9raU'></tfoot>
                      <tbody id='K9raU'></tbody>
                    <legend id='K9raU'><style id='K9raU'><dir id='K9raU'><q id='K9raU'></q></dir></style></legend>
                    • <bdo id='K9raU'></bdo><ul id='K9raU'></ul>
                    • <i id='K9raU'><tr id='K9raU'><dt id='K9raU'><q id='K9raU'><span id='K9raU'><b id='K9raU'><form id='K9raU'><ins id='K9raU'></ins><ul id='K9raU'></ul><sub id='K9raU'></sub></form><legend id='K9raU'></legend><bdo id='K9raU'><pre id='K9raU'><center id='K9raU'></center></pre></bdo></b><th id='K9raU'></th></span></q></dt></tr></i><div id='K9raU'><tfoot id='K9raU'></tfoot><dl id='K9raU'><fieldset id='K9raU'></fieldset></dl></div>

                      1. <small id='K9raU'></small><noframes id='K9raU'>