要輸出一個數的絕對值,可以使用math.h頭文件中的abs()函數。該函數接受一個整數或浮點數作為參數,并返回其絕對值。例如:
#include <stdio.h>
#include <math.h>
int main() {
int num = -5;
int abs_num = abs(num);
printf("The absolute value of %d is %d\n", num, abs_num);
return 0;
}
運行上面的代碼將會輸出:
The absolute value of -5 is 5