ラウンドアップ/ダウン
クリックでコピー
floatを指定された精度で丸めます。
ヒント:整数を丸める場合(例: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.