c++绝对值的函数是什么?包含什么头文件

c++绝对值的函数是什么?包含什么头文件,第1张

绝对值函数有两个,对整数和对浮点数

对整数: abs(int) 头文件是#include<stdlib.h>

对浮点数: fabs(double) 头文件是#include<math.h>

当然也可以自己定义template类型,定义各个类型的绝对值函数

1. C语言的库函数中提供了求绝对值的函数,函数名为 abs

2. 函数的头文件:#include

3. 函数原型:int abs (int j)

4. 函数说明:abs()用来计算参数j 的绝对值,然后将结果返回。

5. 返回值:返回参数j 的绝对值结果。

c语言中取绝对值的函数

*   ABS.C:   This   program   computes   and   displays

*   the   absolute   values   of   several   numbers.

#include     <stdio.h>

#include     <math.h>

#include     <stdlib.h>

void   main(   void   )

{int         ix   =   -4,   iy

long       lx   =   -41567L,   ly

double   dx   =   -3.141593,   dy

iy   =   abs(   ix   )

printf(   "The   absolute   value   of   %d   is   %d/n",   ix,   iy)

ly   =   labs(   lx   )

printf(   "The   absolute   value   of   %ld   is   %ld/n",   lx,   ly)

dy   =   fabs(   dx   )

printf(   "The   absolute   value   of   %f   is   %f/n",   dx,   dy   )

Output

The   absolute   value   of   -4   is   4

The   absolute   value   of   -41567   is   41567

The   absolute   value   of   -3.141593   is   3.141593


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11606591.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存