Rounding Converter

Round numbers using different rounding methods

Rounding Methods Explained

Round (Half Up)

Rounds to nearest; .5 rounds up (2.5 → 3)

Floor

Always rounds toward negative infinity (2.9 → 2, -2.1 → -3)

Ceiling

Always rounds toward positive infinity (2.1 → 3, -2.9 → -2)

Truncate

Removes decimal part, rounds toward zero (2.9 → 2, -2.9 → -2)