欢迎来到天天文库
浏览记录
ID:18261931
大小:127.00 KB
页数:7页
时间:2018-09-16
《delphi中的算术运算函数》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、AbsCeilExpFloorfracFrexpintintpowerLdexpmaxminpipolypowerroundsqrttruncsqr函数名ABS简要介绍:Returnsanabsolutevalue.(取绝对值)所属单元:System定义:functionAbs(X);详细解释: Absreturnstheabsolutevalueoftheargument,X.Xisaninteger-typeorreal-typeexpression.(Abs函数用于返回变量X的绝对值,X可以是一个整形的变量或实数型的变量)返回函数
2、名ceil简要介绍:Roundsvariablesuptowardpositiveinfinity.所属单元:Math定义:functionCeil(X:Extended):Integer详细解释:CallCeiltoobtainthelowestintegergreaterthanorequaltoX.TheabsolutevalueofXmustbelessthanMaxInt.Forexample:Ceil(-2.8)=-2Ceil(2.8)=3Ceil(-1.0)=-1(调用ceil函数,返回大于或等于x的最小整数值。X的绝对值
3、一定要小于最大整数值。例如:Ceil(-2.8)=-2Ceil(2.8)=3Ceil(-1.0)=-1)返回函数名Exp简要介绍:ReturnstheexponentialofX.(Exp函数返回自然对数基底E的X次幂。)所属单元:System定义:functionExp(X:Real):Real;详细解释:ExpreturnsthevalueoferaisedtothepowerofX,whereeisthebaseofthenaturallogarithms.(Exp返回e的X次幂的值,其中e是一个自然对数基底。)范例:vare:r
4、eal;S:string;begine:=Exp(1.0);Str(ln(e):3:2,S);S:='e='+FloatToStr(e)+';ln(e)='+S;Canvas.TextOut(10,10,S);end;返回函数名Floor简要介绍:Roundsvariablestowardnegativeinfinity.(取小于给定值的最大整数)所属单元:Math定义:functionFloor(X:Extended):Integer;详细解释:CallFloortoobtainthehighestintegerlessthanore
5、qualtoX.Forexample:Floor(-2.8)=-3Floor(2.8)=2Floor(-1.0)=-1Note:TheabsolutevalueofXmustbelessthanMaxInt.(使用Floor函数以取得小于等于X的最大的整数,如:Floor(-2.8)=-3Floor(2.8)=2Floor(-1.0)=-1注意:X的绝对值必须小于整形数的最大值)返回函数名Frac简要介绍:Returnsthefractionalpartofarealnumber(返回一个实数的小数部分)所属单元:System定义:fu
6、nctionFrac(X:Extended):Extended;详细解释:TheFracfunctionreturnsthefractionalpartoftheargumentX.Xisareal-typeexpression.TheresultisthefractionalpartofX;thatis,Frac(X)=X-Int(X).(Frac函数返回参数X的小数部分,X是一个实型数,该函数的作用等价于Frac(X)=X-Int(X)。)范例:vara,b:Real;begina:=1.54;b:=frac(a);end;此时,a
7、=1.54,b=0.54返回函数名Frexp简要介绍:SeparatestheMantissaandExponentofX(分解开X的尾数和指数。)所属单元:Math定义:procedureFrexp(X:Extended;varMantissa:Extended;varExponent:Integer)register;详细解释:FrexpreturnsthemantissaofXasMantissaandtheexponentasExponent.(Frexp函数返回X的尾数用变量Mantissa和指数用变量Exponent)。返回
8、函数名int简要介绍:Returnstheintegerpartofarealnumber.(返回一个实数类型的整数部分)所属单元:System定义:functionInt(X:Extended):Exte
此文档下载收益归作者所有