📜  C++ cmath abs()

📅  最后修改于: 2020-09-25 07:19:03             🧑  作者: Mango

C++中的abs() 函数返回参数的绝对值。

Abs 函数与C++中的fabs()相同。

该函数在头文件中定义。

[Mathematics] |x| = abs(x) [C++ Programming]

abs()原型[从C++ 11标准开始]

double abs(double x);
float abs(float x);
long double abs(long double x);
double abs(T x); // For integral type

abs() 函数采用单个参数,并返回doublefloatlong double类型的值。

abs()参数

abs() 函数采用单个参数x,其返回绝对值。

abs()返回值

abs() 函数返回x的绝对值,即| x |。

示例1:abs() 函数在C++中如何工作?

#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

示例2:整数类型的abs() 函数

#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