如何使用C语言中的绝对值函数
时间: 2024-05-02 14:17:51 浏览: 106
C# 中如何取绝对值函数
使用C语言中的绝对值函数需要包含头文件stdlib.h,该函数的原型为:
```c
int abs(int x);
```
其中,x为所要求绝对值的整数。
使用方法如下:
```c
#include <stdio.h>
#include <stdlib.h>
int main()
{
int x = -5;
int y = abs(x);
printf("The absolute value of %d is %d.\n", x, y);
return 0;
}
```
输出结果为:
```
The absolute value of -5 is 5.
```
说明abs函数可以求出一个整数的绝对值。
阅读全文