在C语言中,可以使用abs()函数来求两个数差的绝对值。abs()函数的原型如下:
int abs(int x);
使用示例:
#include <stdio.h>
#include <stdlib.h>
int main() {
int a = 10;
int b = 5;
int diff = abs(a - b);
printf("两个数的差的绝对值为:%d\n", diff);
return 0;
}
输出结果:
两个数的差的绝对值为:5
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: sin()函数与cos()函数在c语言中的区别