在C語言中,可以使用abs()
函數來表示一個數的絕對值。該函數的原型如下:
int abs(int x);
使用方法如下:
#include <stdio.h>
#include <stdlib.h>
int main() {
int x = -10;
int absValue = abs(x);
printf("The absolute value of %d is %d", x, absValue);
return 0;
}
輸出結果為:
The absolute value of -10 is 10