问答详情
源自:7-16 随机数 random()

怎么用random()和round()生成一个随机整数?

怎么用random()和round()生成一个随机整数?

提问者:qq_恋雨愉殇_0 2018-09-27 15:24

个回答

  • qq_南古_0
    2018-12-26 16:13:42

      在  math  里面【四舍五入  (生产1~10随机数)】

    so:   document.write(   Math.round(  Math.random()*10 ) );

  • 慕后端3397650
    2018-11-29 18:28:50

    <!DOCTYPE html>

    <html>

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <title>Math </title>

    <script type="text/javascript">

    var a=Math.random()*10;

    var b=Math.round(a);

    document.write(b);

    </script>

    </head>

    <body>

    </body>

    </html>


  • isSmallFish
    2018-10-30 14:49:55

    document.write(Math.round(Math.random()*10));

  • 春白
    2018-09-28 19:28:47

    Math.round(Math.random()*10) 随机生成0-10的整数

  • qq_恋雨愉殇_0
    2018-09-27 15:26:37

    本来是先用random(),在random里套round,结果发现随机生成的不是整数