반올림/내림

복사하려면 클릭

주어진 정밀도로 부동 소수점을 반올림합니다.


: 정수를 반올림하려면(예: 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.