round expression function

Rounds a number to the nearest integer.

All Usage Examples

See also: trunc, int, ceil, floor

Usage

round()

Examples

round(2.501)=3
round(-2.501)=-3
round(0.2)=0
round(-.2)=0