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

abs函数


概要:
#include <stdlib.h>
int abs(int j);

描述:

该函数计算参数j的绝对值。如果结果不能表示,函数行为是未定义的(最小负数的绝对值不能使用二进制补码表示。)。


参数:
int j

int类型整数。


返回值:

函数返回参数j的绝对值。


范例:
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
/*函数abs范例*/

#include <stdio.h>
#include <stdlib.h>

int main(void)
{
    printf("%d\n", abs(-5));

    return 0;
}


输出:

5


相关内容:
labs 计算绝对值的函数。
llabs 计算绝对值的函数。