Rounds a number to the nearest integer.
See also: trunc, int, ceil, floor
round()
round(2.501)=3
round(-2.501)=-3
round(0.2)=0
round(-.2)=0