round() 遵循四舍五入把原值轉(zhuǎn)化為指定小數(shù)位數(shù),如:round(1.45,0) = 1;round(1.55,0)=2
floor()向下取整 如:floor(1.45)= 1,floor(1.55) = 1 ,floor(-1.45)= -2 ,floor(-1.55) = -2
ceiling()向上取整 如:ceiling(1.45) = 2,ceiling(1.55)=2,ceiling(-1.45) = -1,ceiling(-1.55)=-1
您可能感興趣的文章:- Javascript四舍五入Math.round()與Math.pow()使用介紹
- js四舍五入數(shù)學函數(shù)round使用實例
- php中的四舍五入函數(shù)代碼(floor函數(shù)、ceil函數(shù)、round與intval)
- PHP中round()函數(shù)對浮點數(shù)進行四舍五入的方法
- PHP四舍五入、取整、round函數(shù)使用示例
- C#使用round函數(shù)四舍五入的方法
- JavaScript里四舍五入函數(shù)round用法實例
- sqlserver四舍五入使用round函數(shù)及cast和convert函數(shù)