C++的绝对值函数是用来计算一个数的绝对值的函数。绝对值是一个数的非负值,如果这个数是正数或零,则它的绝对值就是它自身;如果这个数是负数,则它的绝对值是它的相反数。
C++中有两个常用的绝对值函数:abs()和fabs()。
int abs(int n);
使用示例:
#include <iostream>
#include <cstdlib>
int main() {
int num = -10;
int result = abs(num);
std::cout << "The absolute value of " << num << " is " << result << std::endl;
return 0;
}
输出结果:
The absolute value of -10 is 10
double fabs(double n);
使用示例:
#include <iostream>
#include <cmath>
int main() {
double num = -10.5;
double result = fabs(num);
std::cout << "The absolute value of " << num << " is " << result << std::endl;
return 0;
}
输出结果:
The absolute value of -10.5 is 10.5
需要注意的是,abs()函数和fabs()函数需要包含相应的头文件。对于整数,可以包含