在C语言中,可以使用abs函数来求一个整数的绝对值。
#include <stdio.h>
#include <stdlib.h>
int main() {
int num = -5;
int absolute = abs(num);
printf("The absolute value of %d is %d\n", num, absolute);
return 0;
}
输出结果为:
The absolute value of -5 is 5
对于浮点数的绝对值,可以使用fabs函数。
#include <stdio.h>
#include <math.h>
int main() {
float num = -3.14;
float absolute = fabs(num);
printf("The absolute value of %.2f is %.2f\n", num, absolute);
return 0;
}
输出结果为:
The absolute value of -3.14 is 3.14
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c语言空字符串如何影响数组