猿问

c++ abs()干什么用的?

c++ abs()干什么用的?


幕布斯6054654
浏览 1712回答 2
2回答

拉丁的传说

abs全称是 a function returns the absolute value of its parameter.这是一个函数,返回它的参数(整型)的绝对值。abs 是 absolute value (绝对值)缩写。c++ 中的一个数学函数,计算整型量的绝对值。要头文件 #include <cmath> 或 #include <math.h>算例:int x=16, y= -6;cout << abs(x) << endl;cout << abs(y) << endl;输出:166浮点数的绝对值用 fabs 函数。

肥皂起泡泡

输出一个int 型数的绝对值#include <iostream.h>#include <cmath> //要调用abs()函数就要输入数学函数的头文件void main(){int a(-1); //定义a为-1cout<<abs(a)<<endl; //输出的结果是a的绝对值}
随时随地看视频慕课网APP
我要回答