round, roundf, roundl - redondean al entero más cercano, en
dirección opuesta al cero
Biblioteca Matemática (
libm,
-lm)
#include <math.h>
double round(double x);
float roundf(float x);
long double roundl(long double x);
round(),
roundf(),
roundl():
_ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L
Estas funciones redondean
x al entero más cercano, pero redondean
las mitades en dirección opuesta al cero (sin tener en cuenta la
dirección actual del redondeo, vea
fenv(3)), en lugar de al
entero par más cercano como
rint(3).
For example,
round(0.5) is 1.0, and
round(-0.5) is -1.0.
Estas funciones devuelven el valor del entero redondeado.
Si
x es entero, +0, -0, NaN o infinito, se devuelve
x tal cual.
No suceden errores. En POSIX 1-2001 se documenta un rango de errores en caso de
desbordamiento de buffer, consulte NOTAS.
Estas funciones han sido añadidas en la versión 2.1 de glibc.
Para obtener una explicación de los términos usados en esta
sección, véase
attributes(7).
Interfaz |
Atributo |
Valor |
round(), roundf(), roundl() |
Seguridad del hilo |
Multi-hilo seguro |
C99, POSIX.1-2001, POSIX.1-2008.
POSIX.1-2001 contains text about overflow (which might set
errno to
ERANGE, or raise an
FE_OVERFLOW exception). In practice, the
result cannot overflow on any current machine, so this error-handling stuff is
just nonsense. (More precisely, overflow can happen only when the maximum
value of the exponent is smaller than the number of mantissa bits. For the
IEEE-754 standard 32-bit and 64-bit floating-point numbers the maximum value
of the exponent is 127 (respectively, 1023), and the number of mantissa bits
including the implicit bit is 24 (respectively, 53).)
If you want to store the rounded value in an integer type, you probably want to
use one of the functions described in
lround(3) instead.
ceil(3),
floor(3),
lround(3),
nearbyint(3),
rint(3),
trunc(3)
La traducción al español de esta página del manual fue
creada por Juan Piernas <
[email protected]>
Esta traducción es documentación libre; lea la
GNU
General Public License Version 3 o posterior con respecto a las
condiciones de copyright. No existe NINGUNA RESPONSABILIDAD.
Si encuentra algún error en la traducción de esta página
del manual, envíe un correo electrónico a
[email protected]