round
scorefile command -- round the argument to the nearest integer
USAGE:
val = round(someval)
round
returns (as a double) the nearest integer ("rounded off") value of the argument
someval
. I.e. 3.789 becomes 4.0; 987.123 become 987.0.
See also
trunc
.