问答详情
源自: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">

var a=((Math.random())*10);

var b=Math.round(a);

document.write(a);

document.write(b);

</script>

</head>

<body>

</body>

</html>


提问者:weixin_慕少2546565 2018-12-28 13:28

个回答

  • 慕后不久看
    2018-12-28 14:23:11
    已采纳

    https://img1.mukewang.com/5c25c11b0001243513660768.jpg

    你两个输出中间少了间隔,数值在一起了看不出来