问答详情
源自:7-15 四舍五入round()

怎么回事?

怎么回事,为什么没有结果 document.write(Math.round(3.3)+"
");  document.write(Math.round(-0.1))+"
");  document.write(Math.round(-9.9))+"
");  document.write(Math.round(8.9));

提问者:慕粉18206812702 2016-09-01 10:11

个回答

  • 六月ovo
    2016-12-13 17:16:50

    document.write(Math.round(3.3)+"");  

    document.write(Math.round(-0.1))+"");  //这行 -0.1后面多了一个右半边括号

     document.write(Math.round(-9.9))+"");   //这行 -9.9后面多了一个右半边括号

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


  • 慕村1994845
    2016-09-27 17:58:24

    var num=[3.3,-3.3,0.1,-0.1,5.5,-5.5,-5.52];
      for(var i=0;i<num.length;i++){
          document.write(Math.round(num[i])+"<br/>");
          }

    这样就不用写那么多输出了

  • Tangless
    2016-09-01 10:32:03

    代码注意规范,最好一句一行,多了两个括号。。。

    以下只正确代码   


       document.write(Math.round(3.3)+" ");  

        document.write(Math.round(-0.1)+" ");  

        document.write(Math.round(-9.9)+" ");  

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