|  |  D.12.2.10 round Procedure from libraryatkins.lib(see  atkins_lib).
 
Example:Usage:
round(r);
Return:
the nearest number to r out of Z
Assume:
r should be a rational or a real number
 |  | LIB "atkins.lib";
ring R = (real,50),x,dp;
number r=7357683445788723456321.6788643224;
round(r);
==> 7357683445788723456322
 | 
 
 |