//math() //Pl document.write(Math.PI+‘<br>‘); var math=10.1; var math1=10.9; //四舍五入round() document.write(Math.round(math)+‘<br>‘); //进一法 ceil document.write(Math.ceil(math)+"<br>"); //退一法 floor document.write(Math.floor(math)+"<br>"); //获取最小值min() document.write(Math.min(1,10)+‘<br>‘); //获取最大值max() document.write(Math.max(10,1)+‘<br>‘); //随机数random() document.write(Math.random());
时间: 2024-12-19 14:43:14