round


機能:
小数点後の指定桁nまで四捨五入丸め

書式:
round(d,n)

解説:
引数dの小数部の桁数n以降の数値を四捨五入丸めます。

例:round(sind(45),2); → 0.71

round(12.376974, 3); → 12.377


return