Espaces de noms
Variantes
Affichages
Actions

div, ldiv, lldiv

De cppreference.com
< c‎ | numeric‎ | math

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.

Click here for the English version of this page

 
 
 
Fonctions mathématiques courantes
Fonctions
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Opérations de base
Original:
Basic operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
div
ldiv
lldiv
imaxdiv



(C99)
remainder (C99)
remquo (C99)
fma (C99)
fmax (C99)
fmin (C99)
fdim (C99)
nan
nanf
nanl
(C99)
(C99)
(C99)
Les fonctions exponentielles
Original:
Exponential functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
exp
exp2 (C99)
expm1 (C99)
log
log1p (C99)
log2 (C99)
Les fonctions de puissance
Original:
Power functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
cbrt (C99)
hypot (C99)
pow
Les fonctions trigonométriques et hyperboliques
Original:
Trigonometric and hyperbolic functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Erreur fonctions et gamma
Original:
Error and gamma functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
erf (C99)
erfc (C99)
lgamma (C99)
tgamma (C99)
Entier le plus proche opérations en virgule flottante
Original:
Nearest integer floating point operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
round
lround
llround
(C99)
(C99)
(C99)
trunc (C99)
nearbyint (C99)
rint
lrint
llrint
(C99)
(C99)
(C99)
Flottant fonctions de manipulation de points
Original:
Floating point manipulation functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
scalbn
scalbln
(C99)
(C99)
ilogb (C99)
logb (C99)
Classification
Original:
Classification
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
fpclassify (C99)
isfinite (C99)
isinf (C99)
isnan (C99)
isnormal (C99)
signbit (C99)
Macro constantes
Original:
Macro constants
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
Déclaré dans l'en-tête <stdlib.h>
div_t     div( int x, int y );
ldiv_t    ldiv( long x, long y );
lldiv_t   lldiv( long long x, long long y );
Déclaré dans l'en-tête <inttypes.h>
imaxdiv_t imaxdiv( intmax_t x, intmax_t y );
Calcule le quotient (le résultat de l'expression x/y) et le reste (le résultat de l'expression x%y) simultanément. (depuis C99)
Original:
Computes the quotient (the result of the expression x/y) and remainder (the result of the expression x%y) simultaneously. (depuis C99)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Calcule le quotient et le reste en même temps. Le quotient est le quotient algébrique avec une partie fractionnaire mis au rebut (tronquée vers zéro). Le reste est telle que quot * y + rem == x. (
jusqu'à ce que c99
Original:
until c99
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
)
Original:
Computes quotient and remainder simultaneously. The quotient is the algebraic quotient with any fractional part discarded (truncated towards zero). The remainder is such that quot * y + rem == x. (
jusqu'à ce que c99
Original:
until c99
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[modifier] Notes

Jusqu'à C99, la direction d'approximation du quotient et le signe du reste dans les opérateurs de division et le reste intégré dans la mise en œuvre a été défini si l'une des opérandes est négatif, mais il était bien définie dans div et ldiv .
Original:
Until C99, the rounding direction of the quotient and the sign of the remainder in the built-in division and remainder operators was implementation-defined if either of the operands was negative, but it was well-defined in div and ldiv.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[modifier] Paramètres

x, y -
des valeurs entières
Original:
integer values
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[modifier] Retourne la valeur

Structure de type div_t, ldiv_t, ldiv_t, imaxdiv_t défini comme suit:
Original:
Structure of type div_t, ldiv_t, ldiv_t, imaxdiv_t defined as:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
struct div_t {
 int quot; // The quotient
 int rem; // The remainder
};
 
struct ldiv_t {
 long quot; // The quotient
 long rem; // The remainder
};
 
struct lldiv_t {
 long long quot; // The quotient
 long long rem; // The remainder
};
 
struct imaxdiv_t {
 std::intmax_t quot; // The quotient
 std::intmax_t rem; // The remainder
};

[modifier] Voir aussi

reste de l'opération de division à virgule flottante
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.

(fonction) [edit]
C++ documentation for div
Récupérée de « https://fr.cppreference.com/mwiki/index.php?title=c/numeric/math/div&oldid=47275 »

AltStyle によって変換されたページ (->オリジナル) /