该函数查找给定数字的绝对值。
假设一个数字是 'x':
abs(x) = |x|;
abs() 和 fabs() 的区别
abs() 函数不支持 float 或 double 类型参数,而 fabs() 函数支持 float、double 和 integer 类型参数。
用法
int abs( int x);
long int abs(long int x );
long long int abs(long long int x);
参数
x:要确定绝对值的值。
返回值
它返回 x 的绝对值。
例子1
让我们看一个简单的例子,当 x 的值为负时。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
int x= -9;
std::cout << "Value of x is:" <<x<< std::endl;
cout<<"Absolute value of x is:"<<abs(x);
return 0;
}
输出:
Value of x is:-9 Absolute value of x is:9
在本例中,abs() 函数计算 x 的绝对值并返回值 9。
例子2
让我们看一个简单的例子,当 x 的值为正时。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
int x= 89;
std::cout << "Value of x is:" <<x<< std::endl;
cout<<"Absolute value of x is:"<<abs(x);
return 0;
}
输出:
Value of x is:89 Absolute value of x is:89
在本例中,abs() 函数计算 x 的绝对值。
相关用法
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math atan()用法及代码示例
- C++ Math asin()用法及代码示例
- C++ Math atan2()用法及代码示例
- C++ Math acos()用法及代码示例
- C++ Math atanh()用法及代码示例
- C++ Math scalbn()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math nextafter()用法及代码示例
- C++ Math fdim()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math erfc()用法及代码示例
- C++ Math sinh()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math abs()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。