为了账号安全,请及时绑定邮箱和手机立即绑定

怎么回事?

怎么回事,为什么没有结果 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 回答

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));


0 回复 有任何疑惑可以回复我~
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/>");
      }

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

0 回复 有任何疑惑可以回复我~

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

以下只正确代码   


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

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

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

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


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
JavaScript进阶篇
  • 参与学习       468044    人
  • 解答问题       21891    个

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

进入课程

怎么回事?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信