小楼寂寞新雨月 发表于 2014-9-14 10:10:01

C标准库之数学函数fabs

功能:求双精度数的绝对值

函数原型:double fabs(double x);

要求:
函数需要的头文件
fabs<math.h>
参数:
参数说明
x求绝对值的数
返回值:精度数的绝对值
举例:#include <stdio.h>
#include <float.h>
#include <ctype.h>
#include <math.h>
int main()
{
double a = 3.3,b = -4.4,c,d;//为变量赋初值
c = fabs(a);                  //求a的绝对值
d = fabs(b);                  //求b的绝对值
printf("%f\n%f\n",c,d);
}


页: [1]
查看完整版本: C标准库之数学函数fabs