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

这样写有没有问题?

<!DOCTYPE html>

<html>

<head>

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

<title>Math </title>

<script type="text/javascript">

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

</script>

</head>

<body>

</body>

</html>

这节没写答案  这样写可以吧?

提问者:这你都晓得 2016-08-17 15:16

个回答

  • 懵逼的我
    2016-10-27 22:40:41

    可以。

    随机数*10,或者随机数四舍五入后再*10都是可以的。

  • Yinsion_Nie
    2016-09-28 17:49:20

    document.write(Math.round(Math.random()*80 + 20));

    Math.random()不加括号,也是可以的。

  • qq_Afterfiveyea_0
    2016-08-17 15:29:50

    可以的