日本免费高清视频-国产福利视频导航-黄色在线播放国产-天天操天天操天天操天天操|www.shdianci.com

學(xué)無先后,達(dá)者為師

網(wǎng)站首頁 編程語言 正文

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

作者:小黑孩666 更新時間: 2022-07-22 編程語言

Math.ceil(x) -- 返回大于等于數(shù)字參數(shù)的最小整數(shù)(取整函數(shù)),對數(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

Math.ceil? 浮點(diǎn)數(shù)向上取整 ?? Math.floor 浮點(diǎn)數(shù)向下取整

原文鏈接:https://blog.csdn.net/xiaoheihai666/article/details/125113545

欄目分類
最近更新