欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

JavaScript Math.ceil() 函數(shù)使用介紹

 更新時(shí)間:2013年12月11日 16:49:49   作者:  
Math.ceil(x) -- 返回大于等于數(shù)字參數(shù)的最小整數(shù)(取整函數(shù)),對(duì)數(shù)字進(jìn)行上舍入,下面有個(gè)不錯(cuò)的示例,感興趣的朋友可以參考下
Math.ceil(x) -- 返回大于等于數(shù)字參數(shù)的最小整數(shù)(取整函數(shù)),對(duì)數(shù)字進(jìn)行上舍入

ceil是ceiling的縮寫,中文"上限"的意思

引用網(wǎng)址:http://www.dreamdu.com/javascript/Math.ceil/

ceil函數(shù)語法

Math.ceil(x);

ceil函數(shù)參數(shù)

x -- 為number類型的數(shù)字

ceil函數(shù)返回值

返回大于等于x的最小整數(shù)

ceil函數(shù)示例

document.write(Math.ceil(5.99));
document.write(Math.ceil(-5.99));
document.write(Math.ceil(1.01));
document.write(Math.ceil(-1.01));

結(jié)果:

6
-5
2
-1

相關(guān)文章

最新評(píng)論