Abs Function

傳回數值型表示式的絕對值。

語法


Abs(Number)

傳回值類型

Double

參數:

Number:要傳回絕對值的任意數值型表示式。正數 (包括 0) 的絕對值是其本身,而負數的絕對值是該負數所轉換成的正數。

以下示例使用 Abs 函式計算兩個數值之差。數值的輸入順序不會影響計算結果。

錯誤代碼:

5 無效的程序呼叫

示例:


Sub ExampleDifference
Dim siW1 As Single
Dim siW2 As Single
    siW1 = Int(InputBox("Please enter the first amount","Value input"))
    siW2 = Int(InputBox("Please enter the second amount","Value input"))
    Print "The difference is "; Abs(siW1 - siW2)
End Sub

Please support us!