◐ Shell
clean mode source ↗

std::div, std::ldiv, std::lldiv — cppreference.com

De cppreference.com

<metanoindex/>

<tbody> </tbody>

Déclaré dans l'en-tête

<cstdlib>

std::div_t div( int x, int y );

std::ldiv_t div( long x, long y );

std::lldiv_t div( long long x, long long y );

(depuis C++11)

std::ldiv_t ldiv( long x, long y );

std::lldiv_t lldiv( long long x, long long y );

(depuis C++11)

Déclaré dans l'en-tête

<cinttypes>

std::imaxdiv_t div( std::intmax_t x, std::intmax_t y );

(depuis C++11)

std::imaxdiv_t imaxdiv( std::intmax_t x, std::intmax_t y );

(depuis C++11)

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 C++11)

Original:

Computes the quotient (the result of the expression x/y) and remainder (the result of the expression x%y) simultaneously. (depuis C++11)

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. (avant C++11)

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. (avant C++11)

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Notes

Jusqu'à ce que C + +11, la direction d'approximation du quotient et le signe du reste dans le haut-opérateurs de division et le reste a été définie par l'implémentation si l'une des opérandes est négatif, mais il était bien définie dans std::div .

Original:

Until C++11, 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 std::div.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

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.

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
};

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]