怎么回事?

来源:7-15 四舍五入round()

慕粉18206812702

2016-09-01 10:11

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

写回答 关注

3回答

  • 六月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));


JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题