首页 > 其他 > 详细

Codeforces #246(div2)

时间:2014-05-18 08:41:28      阅读:388      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JS随机数测试</title>
</head>
<body>
<script>
document.write(Math.random());//生成一个0~1之间的很多位数的随机小数
</script>
<br>
<script>
document.write(Math.round(Math.random()*9+1));//生成一个1~10(包括1和10)的随机整数
</script>
<br>
<script>
document.write(Math.round(Math.random()*90+10));//生成一个1~100(包括1和100)的随机整数
</script>
</body>
</html>

Codeforces #246(div2),布布扣,bubuko.com

Codeforces #246(div2)

原文:http://blog.csdn.net/coraline_m/article/details/25988271

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!