C 語言中使用 abs() 函數表示絕對值,該函數支援 int、double 和 float 類型的數據,並傳回與輸入資料類型相同的絕對值。
C 語言中絕對值的表示
#如何表示絕對值?
C 語言中直接使用 abs()
函數表示絕對值。
函數定義
<code class="c">#include <stdlib.h> int abs(int x); double abs(double x); float abs(float x);</code>
函數參數
#x
:要取絕對值的數字(可以是int
、double
或float
類型)##傳回值
型別相同)
#範例
<code class="c">#include <stdio.h> #include <stdlib.h> int main() { int x = -5; double y = -3.14; float z = -2.5f; printf("绝对值 %d = %d\n", x, abs(x)); printf("绝对值 %f = %f\n", y, abs(y)); printf("绝对值 %f = %f\n", z, abs(z)); return 0; }</code>
<code>绝对值 -5 = 5 绝对值 -3.140000 = 3.140000 绝对值 -2.500000 = 2.500000</code>
以上是c語言中怎麼表示絕對值的詳細內容。更多資訊請關注PHP中文網其他相關文章!