<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++

      时间:2023-06-05
      <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++的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:模数和 rand() 如何工作? 下一篇:如何从 rand() 缩小数字?

                相关文章

              2. <tfoot id='K9raU'></tfoot>
                <legend id='K9raU'><style id='K9raU'><dir id='K9raU'><q id='K9raU'></q></dir></style></legend>
                • <bdo id='K9raU'></bdo><ul id='K9raU'></ul>
              3. <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'>