<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<style>
</style>
<script>
//四舍五入随机数
//alert(Math.random(0,1));
//1和0随机
//alert(Math.round(Math.random()));
//0-10随机数
//alert(Math.round(Math.random()*10));
//5~10
//Math.round(Math.random()*5+5);
//x~y
var x=42;
var y=49;
Math.round(Math.random()*(y-x)+x);
</script>
</head>
<body>
</body>
</html>