//随机数
document.write("随机验证码"+"</br>");
function a(length){
var szzm="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
var code=" ";
for(var i=0;i<length;++i){
var j=Math.floor(Math.random()*szzm.length);
code +=szzm.charAt(j);
}
return code;
}
document.write("随机验证码"+a(3)+"</br>");
document.write("随机验证码"+a(5)+"</br>");
document.write("随机验证码"+a(7)+"</br>");
//题
document.write("用Math的方法找出3, 9, 12, 99, 45, 78中的最大值和最小值-------------"+"</br>");
var w = Math.max(3, 9, 12, 99, 45, 78);
var b = Math.min(3, 9, 12, 99, 45, 78);
document.write("最大值为:" + w + "<br/>");
document.write("最小值为:" + b+"<br/>");
document.write("请写一个随机生成颜色值rgb(X, Y, Z)的函数,其中X,Y,Z表示的是0~255的数字---"+"</br>");
function getRandomColor() {
var r = Math.floor(Math.random() * (255 + 1));
var g = Math.floor(Math.random() * (255 + 1));
var b = Math.floor(Math.random() * (255 + 1));
var rgb = "rgb(" + r + "," + g + "," + b + ")";
return rgb;
}
document.write(getRandomColor());
console