fmod
Aus 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. |
definiert in Header <math.h>
|
||
float fmodf( float x, float y ); |
||
double fmod( double x, double y ); |
||
long double fmodl( long double x, long double y ); |
||
Berechnet den Rest der Division x/y .
Original:
Computes the remainder of the division operation x/y.
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.
[Bearbeiten] Parameter
x, y | - | Fließkommazahlen
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. |
[Bearbeiten] Rückgabewert
Rest der Division Argumente. Das Ergebnis hat das gleiche Vorzeichen wie
x
.Original:
Remainder of dividing arguments. The result has the same sign as
x
.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.
[Bearbeiten] Siehe auch
(C99) |
der Quotient und Rest der ganzzahligen Division 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. (Funktion) |
(C99) |
unterzeichnet Rest der Teilungsoperation 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. (Funktion) |
C++ documentation for fmod
|