The round function rounds the parameter passed to it (i.e. returns the integer number that is closest in value to the parameter). The type of the value returned by this function is always integer.
The round function's only parameter is an expression of real type.
round(7.4) returns 7
round(7.5) returns 8
round(-7.4) returns -7
round(-7.5) returns -8
Operating Systems: All
Standard Pascal: Yes