labs.c 44 字节
Newer Older
A
Anton Perkov 已提交
1 2 3 4
long labs(long a)
{
	return a>0 ? a : -a;
}