remainder
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 remainderf( float x, float y ); |
(desde C99) | |
double remainder( double x, double y ); |
(desde C99) | |
long double remainderl( long double x, long double y ); |
(desde C99) | |
Calcula el resto de la operación de punto flotante
x/y división. En diferencia a fmod, el tipo de cambio será negativo si fmod(x, y)>y/2 .Original:
Computes the remainder of the floating point division operation
x/y. In difference to fmod, the return type will be negative if fmod(x, y)>y/2.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
| x, y | - | valores de punto flotante
Original: floating point values 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
El resto de los argumentos que se dividen
Original:
Remainder of dividing arguments
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
resto de la operación de división de punto flotante Original: remainder of the floating point division operation 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) |
el cociente y el resto de la división entera Original: the quotient and remainder of integer division 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 remainder
| |