在C++的cstdlib库中,除了abs之外,还有其他一些函数可以获取绝对值。abs主要用于C语言中的int类型输入,以及C++中的int、long、long long类型。其他函数用于long和long long类型数据等。让我们看看这些函数的用法。abs()函数此函数用于int类型数据。因此,它返回给定参数的绝对值。语法如下所示。int abs(int argument)示例 #include <iostream> #include <stdlib.h> #include <cmath> using namespace std; main() { int x = -145; int y = 145; cout<<