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

fabsf函数


概要:
#include <math.h>
float fabsf(float x);

描述:

该函数计算参数x的绝对值。


参数:
float x

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


返回值:

函数返回|x|的值。


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

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

int main(void)
{
    float x = -9.0f;
    float y;

    y = fabsf(x);
    printf("The absolute value of %.6f is %.6f.\n", x, y);

    return 0;
}

输出:

The absolute value of -9.000000 is 9.000000.


相关内容:
fabs double类型的绝对值函数。
fabsl long double类型的绝对值函数。