fmod, fmodf
Berechnet den Gleitkommarest.
double fmod(
double x,
double y
);
float fmod(
float x,
float y
); // C++ only
long double fmod(
long double x,
long double y
); // C++ only
float fmodf(
float x,
float y
);
Parameter
- x, y
Gleitkommawerte.
Rückgabewert
fmod gibt den Gleitkommarest von x / yzurück.Wenn der Wert von y 0.0 ist, gibt fmod ein ruhiges NaN zurück.Weitere Informationen zur Darstellung von einem ruhigen NaN von der printf Familie finden Sie unter printf.
Hinweise
Die fmod-Funktion berechnet den Gleitkommarest f von x / y so, dass x = i * y + f, in dem i eine ganze Zahl ist, f das gleiche Zeichen wie xhat und der absolute Wert f ist kleiner als der absolute Wert y.
C++ lässt Überladen, das heißt Sie können Überladungen von fmodaufrufen.In einem C-Programm verwendet fmod immer zwei Doubles und gibt ein Double zurück.
Anforderungen
Funktion |
Erforderlicher Header |
---|---|
fmod, fmodf |
<math.h> |
Um Kompatibilität zusätzlichen Informationen finden Sie unter Kompatibilität in der Einführung.
Beispiel
// crt_fmod.c
// This program displays a floating-point remainder.
#include <math.h>
#include <stdio.h>
int main( void )
{
double w = -10.0, x = 3.0, z;
z = fmod( w, x );
printf( "The remainder of %.2f / %.2f is %f\n", w, x, z );
}