双精度浮点余数 fmod()

此函数返回 x/y 除法的浮点余数。返回的值与 x 具有相同的符号。

#include <math.h> /* for fmod() */
#include <stdio.h> /* for printf() */

int main(void)
{
    double x = 10.0;
    double y = 5.1;

    double modulus = fmod(x, y);

    printf("%lf\n", modulus); /* f is the same as lf. */

    return 0;
}

输出:

4.90000

重要: 请谨慎使用此功能,因为它可以返回由浮点值操作引起的意外值。

#include <math.h>
#include <stdio.h>

int main(void)
{
    printf("%f\n", fmod(1, 0.1));
    printf("%19.17f\n", fmod(1, 0.1));
    return 0;
}

输出:

0.1
0.09999999999999995