<!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>
这节没写答案 这样写可以吧?
可以。
随机数*10,或者随机数四舍五入后再*10都是可以的。
document.write(Math.round(Math.random()*80 + 20));
Math.random()不加括号,也是可以的。
可以的