当前位置:编程学习 > JAVA >>

javascript随机数

function Random( num_first,num_last ){       //输出指定范围内的随机数的随机整数
	switch( arguments.length ){
		case 1 : return parseInt( Math.random() * num_first + 1 );                    
		case 2 : return parseInt( Math.random() * ( num_last - num_first + 1 ) + num_first );
		default : return 0;
	};
};
Random(1,100)

 

补充:web前端 , JavaScript ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,