JS 随机数

function randomsort(a, b) {
return Math.random()>.5 ? -1 : 1;
}
var arr = [0,1,2,3,4,5,6];
var arr2 = arr.sort(randomsort);
alert(arr2);

/*随机数组元素*/

 

<script>
document.write(parseInt(10*Math.random()));  //输出0~10之间的随机整数

document.write(Math.floor(Math.random()*10+1));  //输出1~10之间的随机整数

function RndNum(n){
var rnd="";
for(var i=0;i<n;i++)
rnd+=Math.floor(Math.random()*10);
return rnd;
}
document.write(RndNum(4));  //输出指定位数的随机数的随机整数


引用部分: 
. 从1开始 至 任意值
parseInt(Math.random()*上限+1); 
. 从任意值开始 至 任意值
parseInt(Math.random()*(上限-下限+1)+下限); 
function fRandomBy(under, over){ 
switch(arguments.length){ 
case 1: return parseInt(Math.random()*under+1); 
case 2: return parseInt(Math.random()*(over-under+1) + under); 
default: return 0; 


document.write(fRandomBy(1,100));  //输出指定范围内的随机数的随机整数
</script>

EG:

<html>
<head>
<title>Math</title>
</head>
<body>
<script language="javascript" type="text/javascript">
total = 0
for(i=1;i<=5000;i++)
{num=Math.random();
total +=num
}
average = total/5000
average = Math.round(average*1000)/1000
document.write("<h1>平均数:"+average+"</h1>")
</script>
</body>
</html>

posted @ 2015-04-23 11:34  mrt_yy  阅读(154)  评论(0编辑  收藏  举报