ROUND(A)
Rounds A to the nearest integer
Integer ROUND(Float A)
A - Float value. If it is not of type float, it is implicitly converted to type float.
Rounds A to the nearest integer
> PRINT ROUND(0.3)
0
> PRINT ROUND(0.7)
1
> PRINT ROUND(-0.3)
0
> PRINT ROUND(-0.7)
-1