怎么回事?
怎么回事,為什么沒有結果
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))+"
");
?document.write(Math.round(-9.9))+"
");
?document.write(Math.round(8.9));
2016-09-01
舉報
2016-12-13
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));
2016-09-27
這樣就不用寫那么多輸出了
2016-09-01
代碼注意規(guī)范,最好一句一行,多了兩個括號。。。
以下只正確代碼? ?
? ?document.write(Math.round(3.3)+" "); ?
? ? document.write(Math.round(-0.1)+" "); ?
? ? document.write(Math.round(-9.9)+" "); ?
? ? document.write(Math.round(8.9));