上/下圆
点击复制
以给定的精度对一个浮点数进行舍入。
提示:如果你想把一个整数四舍五入(例如,把1,240四舍五入到最接近的50),你首先要用整数除以你想四舍五入的数字(例如,1,240/50=24.8),然后把结果四舍五入(例如,把24.8四舍五入到0精度=25),然后再乘回(例如,25*50=1,250)。
流量连接
- [Input] In - starts the block's execution.
- [Output] Out - activates when the block has finished its execution.
数据连接
- [Input] Value (float) - value to be rounded.
- [Input] Precision (integer) - number of decimals to round to (use 0 to round to a whole number).
- [Output] Result (float) - result of the operation.