remquo
Da cppreference.com
![]() | This page has been machine-translated from the English version of the wiki using Google Translate. The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
Definido no cabeçalho <math.h> | ||
float remquof(float x, float y, int*quo ); | ||
double remquo(double x, double y, int*quo ); | ||
longdouble remquol(longdouble x, longdouble y, int*quo ); | ||
Calcula o resto da operação de ponto flutuante x/y divisão como a função
remainder()
faz. Além disso, o sinal, e, pelo menos, três dos últimos bits de x/y serão armazenados em quo.Original:
Computes the remainder of the floating point division operation x/y as the
remainder()
function does. Additionally, the sign and at least the three of the last bits of x/y will be stored in quo.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.
[editar]Parâmetros
x, y | - | valores de ponto flutuante 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. |
quo | - | ponteiro para um inteiro.. valor de armazenamento de alguns bits de x/y pol Original: pointer to an integer value to store some bits of x/y in The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[editar]Valor de retorno
Restante dos argumentos divisão
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.
[editar]Veja também
(C99) | assinado restante da operação de divisão Original: signed remainder of the division operation The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (função) |
restante da operação de ponto flutuante de divisão 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. (função) | |
(C99) | o quociente eo resto da divisão inteira 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. (função) |
C++ documentation for remquo |