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 的表示形式 的详细信息,请参阅 printf。
备注
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 );
}