问答详情
源自:7-16 随机数 random()

请问大神我如果要设置绝对值和次方我要怎么样去操作。

<script type="text/javascript">

   function demo(){

       var a=3.3;

       var b=-1;

       var c=(2,3);

       var d=8.9;

  var math=Math.random();

       /*document.write(Math.floor(a)+"<br/>");

       document.write(Math.floor(b)+"<br/>");

       document.write(Math.floor(c)+"<br/>");

       document.write(Math.floor(d));

       document.write(Math.ceil(a)+"<br/>");

       document.write(Math.ceil(b)+"<br/>");

       document.write(Math.ceil(c)+"<br/>");

       document.write(Math.ceil(d));

  document.write(Math.round(a)+"<br/>");

       document.write(Math.round(b)+"<br/>");

       document.write(Math.round(c)+"<br/>");

       document.write(Math.round(d));

  alert(math*10); */

  document.write(Math.abs(b));

  document.write(Math.pow(c)); 

   }

    demo();   

    

</script>


提问者:qq_可以笑的话不会哭_0 2015-06-15 17:13

个回答

  • ml3837
    2015-07-06 13:50:03
    已采纳

    Math.pow(x,y);表示x的y次方

  • 灿白
    2015-07-23 00:08:24

    Math.abs是绝对值。

    你这一段代码对我记忆所有的函数关系很有帮助,谢谢你~