round(3) Library Functions Manual round(3) NOMBRE round, roundf, roundl - redondean al entero mas cercano, en direccion opuesta al cero BIBLIOTECA Biblioteca Matematica (libm, -lm) SINOPSIS #include double round(double x); float roundf(float x); long double roundl(long double x); Requisitos de Macros de Prueba de Caracteristicas para glibc (vease feature_test_macros(7)): round(), roundf(), roundl(): _ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L DESCRIPCION Estas funciones redondean x al entero mas cercano, pero redondean las mitades en direccion opuesta al cero (sin tener en cuenta la direccion actual del redondeo, vea fenv(3)), en lugar de al entero par mas cercano como rint(3). For example, round(0.5) is 1.0, and round(-0.5) is -1.0. VALOR DEVUELTO Estas funciones devuelven el valor del entero redondeado. Si x es entero, +0, -0, NaN o infinito, se devuelve x tal cual. ERRORES No suceden errores. En POSIX 1-2001 se documenta un rango de errores en caso de desbordamiento de buffer, consulte NOTAS. ATRIBUTOS Para obtener una explicacion de los terminos usados en esta seccion, vease attributes(7). +-----------------------------+--------------------+-------------------+ |Interfaz | Atributo | Valor | +-----------------------------+--------------------+-------------------+ |round(), roundf(), roundl() | Seguridad del hilo | Multi-hilo seguro | +-----------------------------+--------------------+-------------------+ ESTANDARES C11, POSIX.1-2008. HISTORIAL glibc 2.1. C99, POSIX.1-2001. NOTAS 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. VEASE TAMBIEN ceil(3), floor(3), lround(3), nearbyint(3), rint(3), trunc(3) TRADUCCION La traduccion al espanol de esta pagina del manual fue creada por Juan Piernas Esta traduccion es documentacion libre; lea la GNU General Public License Version 3 o posterior con respecto a las condiciones de copyright. No existe NINGUNA RESPONSABILIDAD. Si encuentra algun error en la traduccion de esta pagina del manual, envie un correo electronico a . Paginas de manual de Linux 6.06 31 Octubre 2023 round(3)