3个回答
展开全部
fabs是求浮点数的绝对值的库函数。它有一个double型形参,返回一个double型数据。当不关心浮点数的符号只关心其数字部分时用fabs取得其绝对值。举例代码如下:
//#include "stdafx.h"//If the vc++6.0, with this line.
#include "stdio.h"
#include "math.h"
int main(void){
double x=3.1415926,y=-x;
printf("x = %f\tfabs(x) = %f\n",x,fabs(x));
printf("y = %f\tfabs(y) = %f\n",y,fabs(y));
return 0;
}
输出是:
展开全部
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
格式是:
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 9899:1999的简称,目前应该都是C99标准,之前的标准还有C90
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
追问
这个我看了但没明白能不能解释一下
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询