Skip to main content

Math: round

Round, Ceil or Floor the given number.

Example
# Example with Ceil:
Input: 3.4
Ouput: 4.0

# Example with Floor:
Input: 3.4
Ouput: 3.0

# Example with Round:
Input: 3.4
Ouput: 3.0

Input: 3.9
Ouput: 4.0

Parameters

Round modeREQUIRED

Select which mode to apply to input number: Round, Ceil, Floor

Input

Number
Any numbers as input

Output

Number

Result of the round/ceil/floor operation