<script>
        // alert(Math.PI);
        // alert(Math.floor(3.16));
    // var a=Math.ceil(3.1);
    // alert(a);
    // alert(Math.round(3.1));
    // alert(Math.round(3.5));
// var b=Math.random();
// document.write(b);

// for (var i = 0; i <10 ; i++) {
//     document.write(Math.floor(Math.random()*10+1)+"<br>");
// }
// function selec(low,high){
// var ch=high-low+1;
// return Math.floor(Math.random()*ch+low);
// }
// for (var i = 0; i < 10; i++) {
//     document.write(selec(1111,8888)+"<br>");
// }
// alert(Math.cos(Math.PI/3));
alert(Math.max(1,8,9,88));
</script>

相关文章:

  • 2022-01-22
  • 2021-12-26
  • 2022-12-23
  • 2022-12-23
  • 2021-11-24
  • 2021-09-15
  • 2021-10-05
  • 2021-11-21
猜你喜欢
  • 2021-06-15
  • 2021-10-09
  • 2021-05-28
  • 2021-10-08
  • 2021-09-22
  • 2021-10-07
相关资源
相似解决方案