fmod、fmodf
計算浮點數餘數。
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
);
參數
- x, y
浮點數的值。
傳回值
fmod 會傳回 x / y 的浮點數餘數。 如果 y 的值為 0.0,fmod 就會傳回無訊息 NaN。 如需以 printf 系列表示無訊息 NaN 的詳細資訊,請參閱 wc7014hz(v=vs.120).md。
備註
fmod 函式計算 x / y 的浮點數餘數 f,將此餘數代入 x = i * y + f,其中 i 為整數,f 的正負號與 x 相同,並且 f 的絕對值小於 y 的絕對值。
C++ 允許多載,因此您可以呼叫 fmod 不同版本的多載。 在 C 程式中, fmod 一律接受並傳回雙精確度浮點數。
需求
功能 |
必要的標頭 |
---|---|
fmod, fmodf |
<math.h> |
如需其他相容性資訊,請參閱<簡介>中的相容性。
範例
// 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 );
}