小楼寂寞新雨月 发表于 2014-9-13 10:07:20

C标准库之数学函数abs

本帖最后由 小楼寂寞新雨月 于 2014-9-13 13:13 编辑

功能:求整数的绝对值

函数原型:int abs(int n);

要求:
函数需要的头文件
abs<math.h>或<stdlib.h>
参数:
参数说明
n求绝对值的数
返回值:参数的绝对值
举例:#include <stdio.h>
#include <float.h>
#include <ctype.h>
#include <stdlib.h>
int main()
{
int a = 3,b = -4,c,d;            //为变量赋初值
c = abs(a) ;                  //求a的绝对值
d = abs(b);                     //求b的绝对值
printf("%d\n",c);
printf("%d\n",d);
}




sherwin002 发表于 2014-9-13 11:00:34

你那题目是不是复制的我的啊。。哈哈。。啥叫字符串数学函数。
页: [1]
查看完整版本: C标准库之数学函数abs