发布网友 发布时间:2022-04-22 21:07
共4个回答
热心网友 时间:2022-04-28 10:14
fabs是求浮点数的绝对值的库函数。它有一个double型形参,返回一个double型数据。当不关心浮点数的符号只关心其数字部分时用fabs取得其绝对值。举例代码如下:
//#include "stdafx.h"//If the vc++6.0, with this line.输出是:
热心网友 时间:2022-04-28 11:32
就是求一个变量的绝对值
比如:#include<math.h>
double x=1.23, y=-4.56, a, b;
a=fabs(x) , b=fabs(y)
printf("%lf %lf",a,b);
输出结果为: 1.230000 4.560000 (double型)
热心网友 时间:2022-04-28 13:06
C99标准下:
格式是:
double fabs (double x);(参数和返回值都是double型)
下面是举例和输出:(不举例子说明不清楚吧)
#include <stdio.h> /* printf */
#include <math.h> /* fabs */
int main ()
{
printf ("The absolute value of 3.1416 is %f\n", fabs (3.1416) );
printf ("The absolute value of -10.6 is %f\n", fabs (-10.6) );
return 0;
}
Output:
The absolute value of 3.1416 is 3.141600
The absolute value of -10.6 is 10.600000追问我用的编译器是c++6.0
追答C++6.0是编译器,C99是标准,C99是标准ISO/IEC 99:1999的简称,目前应该都是C99标准,之前的标准还有C90
热心网友 时间:2022-04-28 14:58
http://ke.baidu.com/view/393130.htm追问这个我看了但没明白能不能解释一下