2023-08-14T23:13:46.png

var d = -100;

//输出-100
console.log(d);
//变成正数
console.log(Math.abs(d));
//取最大值
console.log(Math.max(10,20,30,5,40,99));
//取最小值
console.log(Math.min(10,20,30,5,40,99));




//向下取整,不会满5进1
console.log(Math.floor(10.9));
//向上取整
console.log(Math.ceil(10.1));



//返回一个随机数,大于等于0,小于1
console.log(Math.random());





//返回一个10至20的随机小数
function s10(max,min){

  //随机小数 * 20-10 + 最小数
  //0.99999*10+10=19.9999
  var y = Math.random() * (max - min) + min
  console.log(y);

}

s10(10,20);





//返回一个10至20的随机整数



function zs(max,min){

  var y = Math.random() * (max - min) + min
var w = Math.floor(y);
console.log(w);

};

zs(10,20);