round, lround, llround
De cppreference.com
|
|
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
| Definido en el archivo de encabezado <math.h>
|
||
float roundf( float arg ); |
(desde C99) | |
double round( double arg ); |
(desde C99) | |
long double roundl( long double arg ); |
(desde C99) | |
long lroundf( float arg ); |
(desde C99) | |
long lround( double arg ); |
(desde C99) | |
long lroundl( long double arg ); |
(desde C99) | |
long long llroundf( float arg ); |
(desde C99) | |
long long llround( double arg ); |
(desde C99) | |
long long llroundl( long double arg ); |
(desde C99) | |
Calcula entero más cercano a
arg. El número se redondea alejándose de cero en los casos de reinserción Original:
Computes nearest integer to
arg. Number is rounded away from zero in halfway cases The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Parámetros
| arg | - | flotando valor en puntos
Original: floating point value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Valor de retorno
Entero más cercano a
arg .Original:
Nearest integer to
arg.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Ver también
entero más cercano no es mayor que el valor dado Original: nearest integer not greater than the given value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función) | |
más cercano entero no menor que el valor dado Original: nearest integer not less than the given value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función) | |
(C99) |
entero más cercano no es mayor en magnitud que el valor dado Original: nearest integer not greater in magnitude than the given value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función) |
Documentación de C++ para round
| |