C ++中的fabs()函數(shù)返回參數(shù)的絕對值。
它在<cmath>頭文件中定義。
|x| = fabs(x)
double fabs(double x); float fabs(float x); long double fabs(long double x); double fabs(T x); // For integral type
fabs()函數(shù)只有一個參數(shù),并返回類型的值double,float或long double類型。
fabs()函數(shù)采用單個參數(shù)x,其返回絕對值。
fabs()函數(shù)返回x的絕對值,即| x |。
#include <iostream> #include <cmath> using namespace std; int main() { double x = -10.25, result; result = fabs(x); cout << "fabs(" << x << ") = |" << x << "| = " << result << endl; return 0; }
運(yùn)行該程序時,輸出為:
fabs(-10.25) = |-10.25| = 10.25
#include <iostream> #include <cmath> using namespace std; int main() { long int x = -23; double result; result = fabs(x); cout << "fabs(" << x << ") = |" << x << "| = " << result << endl; return 0; }
運(yùn)行該程序時,輸出為:
fabs(-23) = |-23| = 23