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

【C语言】求一个数的绝对值

时间:2017-04-28 18:38:36      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:code   abs   main   stdio.h   name   c语言   int   printf   pre   

//求一个数的绝对值
#include <stdio.h>
int absolute_value(int num)
{
	if (num < 0)
	{
		num = ~(num - 1);
	}
	return num;
}
int main()
{
	printf("%d\n", absolute_value(5));
	printf("%d\n", absolute_value(-5));
	printf("%d\n", absolute_value(0));
	return 0;
}

【C语言】求一个数的绝对值

标签:code   abs   main   stdio.h   name   c语言   int   printf   pre   

原文地址:http://www.cnblogs.com/wgwyanfs/p/6782355.html

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