ent
the nearest integer
ent
ent(expr)
Returns the the nearest integer of
expr
.
Examples:
ent(7);
returns 7
ent(7.2);
returns 7
ent(7.6);
returns 8
ent(-7.2);
returns -7
ent(-7.6);
returns -8
ent(-1.1,1.1,1.8);
returns (-1,1,2)
See also:
int