码迷,mamicode.com
首页 > 编程语言 > 详细

C语言abs函数

时间:2019-02-14 13:26:45      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:style   std   编程入门   mat   c语言编程   absolute   语言   color   编程   

C语言编程入门教程 - abs 函数是用来求整数的绝对值的。

//函数名:abs
//功  能:求整数的绝对值
//用  法:int abs(int i);
//程序例:
#include<stdio.h>
#include<math.h>
int main(void)
{
 int number = -1234;
 printf("number: %d absolute value: %d\n", number, abs(number));
 return 0;
}

 

C语言abs函数

标签:style   std   编程入门   mat   c语言编程   absolute   语言   color   编程   

原文地址:https://www.cnblogs.com/xiaxue168/p/10373967.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!