怎么回事,为什么没有结果
document.write(Math.round(3.3)+"
");
document.write(Math.round(-0.1))+"
");
document.write(Math.round(-9.9))+"
");
document.write(Math.round(8.9));
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));
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/>"); }
这样就不用写那么多输出了
代码注意规范,最好一句一行,多了两个括号。。。
以下只正确代码
document.write(Math.round(3.3)+" ");
document.write(Math.round(-0.1)+" ");
document.write(Math.round(-9.9)+" ");
document.write(Math.round(8.9));