当前位置: 首页 > 工具软件 > abs > 使用案例 >

c语言中abs()和fabs()的区别点整理

郜光明
2023-12-01
  • abs()是对整数取绝对值, 而fabs()是对浮点数取绝对值。
  • 函数原型:
int abs(int x)
double fabs(double x)
  • 头文件
abs(): #include <stdlib.h>
fabs(): #include <math.h>
  • 两者在只#include时都可以使用
 类似资料: