在C++中,可以使用abs()函數(shù)來求一個(gè)數(shù)的絕對(duì)值。示例如下:
#include <iostream>
#include <cstdlib>
int main() {
int num = -5;
int abs_num = abs(num);
std::cout << "The absolute value of " << num << " is " << abs_num << std::endl;
return 0;
}
在其他一些語言中,也有類似的函數(shù)或方法來求絕對(duì)值,例如在Python中可以使用abs()函數(shù),在Java中可以使用Math.abs()方法。不同語言可能會(huì)有不同的語法和函數(shù)名,但思想是一樣的。