函式名: abs
功能:求整數的絕對值頭檔案:math.h
用法:intabs(inti);
程式例:
#include<stdio.h>
#include<math.h>
intmain(void)
{
intnumber=-1234;
printf("number:%dabsolutevalue:%d\n",number,abs(number));
return0;
}
在C語言中還有fabs,也是求絕對值的。
Visual Basic
絕對值函式Abs格式:Abs(<數值表達式>)
功能:求表達式絕對值
說明:函式返回值類型與數值表達式的數據類型相同
例如:Abs(-3.7),其值為3.7。
與C語言中的abs有區別。
Pascal
FunctionAbs(X:Real):Longint;功能:求數的絕對值
例:
Begin
{語句;{(X數據類型)輸出結果}}
Writeln(Abs(84.23));{(Real)8.42300000000000E+0001}
Writeln(Abs(-111222333));{(Longint)111222333}
Writeln(Abs(-1112223334324445556));{(int64)1112223334324445556}
End.
Matlab
求複數實部與虛部的平方和的算術平方根
格式:abs(x)
例如:x=1+j;
y=abs(x);
>>y=1.4142