C标准库之数学函数fmod
本帖最后由 小楼寂寞新雨月 于 2014-9-14 10:27 编辑功能:求x/y的余数
函数原型:double fmod(double x,double y);
要求:
函数需要的头文件
fmod<math.h>
参数:
参数说明
x双精度数
y双精度数
返回值:x/y的余数
举例:#include <stdio.h>
#include <float.h>
#include <ctype.h>
#include <math.h>
int main()
{
double m = 10.1,n = 3.1,x;
x = fmod(m,n);
printf("%f\n",x);
}
页:
[1]