当前位置: C语言 -- 标准库 -- <math.h> -- fmodf

fmodf函数


概要:
#include <math.h>
float fmodf(float x, float y);

描述:

该函数计算表达式x/y的浮点余数。


参数:
float x

参数为一个float类型的浮点数。

float y

参数为一个float类型的浮点数。


返回值:

函数返回x - ny的值,其中nx/y0舍入得到的整数。如果参数y为非0值,结果与参数x具有相同的符号,并且绝对值小于参数y的绝对值。如果参数y0,是发生域错误,还是返回0,将由实现定义。


范例:
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
/*函数fmodf范例*/

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

int main(void)
{
    float x = -4.0f;
    float y = 5.0f;
    float z = 7.0f;

    printf("fmodf(%.2f,%.2f) = %.2f\n", y, x, fmodf(y,x));
    printf("fmodf(%.2f,%.2f) = %.2f\n", z, x, fmodf(z,x));

    return 0;
}

输出:

fmodf(5.00,-4.00) = 1.00

fmodf(7.00,-4.00) = 3.00


相关内容:
fmod double类型的计算余数函数。
fmodl long double类型的计算余数函数。