📅  最后修改于: 2020-09-25 07:19:03             🧑  作者: Mango
Abs 函数与C++中的fabs()相同。
该函数在
[Mathematics] |x| = abs(x) [C++ Programming]
double abs(double x);
float abs(float x);
long double abs(long double x);
double abs(T x); // For integral type
abs() 函数采用单个参数,并返回double
, float
或long double
类型的值。
abs() 函数采用单个参数x,其返回绝对值。
abs() 函数返回x的绝对值,即| x |。
#include
#include
using namespace std;
int main()
{
double x = -87.91, result;
result = abs(x);
cout << "abs(" << x << ") = |" << x << "| = " << result << endl;
return 0;
}
运行该程序时,输出为:
abs(-87.91) = |-87.91| = 87.91
#include
#include
using namespace std;
int main()
{
long int x = -101;
double result;
result = abs(x);
cout << "abs(" << x << ") = |" << x << "| = " << result << endl;
return 0;
}
运行该程序时,输出为:
abs(-101) = |-101| = 101