remquo
Da cppreference.com.
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
Elemento definito nell'header <math.h>
|
||
float remquof( float x, float y, int *quo ); |
||
double remquo( double x, double y, int *quo ); |
||
long double remquol( long double x, long double y, int *quo ); |
||
Calcola il resto del galleggiante x/y operazione di divisione punto come funzione
remainder()
fa. Inoltre, il segno e almeno tre degli ultimi pezzi di x/y saranno memorizzati in 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.
[modifica] Parametri
x, y | - | valori in virgola mobile
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 | - | puntatore ad un intero.. valore da memorizzare alcuni bit di x/y trovi
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. |
[modifica] Valore di ritorno
Il resto degli argomenti che dividono
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.
[modifica] Vedi anche
(C99) |
firmato resto della divisione 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. (funzione) |
resto dell'operazione divisione floating point 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. (funzione) | |
(C99) |
il quoziente e il resto della divisione intera 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. (funzione) |
C++ documentation for remquo
|