FBWiki : KeyPgAbs

FBWiki :: Categories :: PageIndex :: RecentChanges :: RecentlyCommented :: Login/Register

ABS


Calculates the absolute value of a number

Syntax:

Usage:
result = Abs( number )

Parameters:
number
Value to find the absolute value of.

Return Value:
The absolute value of number.

Description:
The absolute value of a number is its unsigned magnitude. For example, Abs(-1) and Abs(1) both return 1. The required number argument can be any valid numeric expression. Abs returns its value as the same data type as the argument number.

The Abs unary operator can be overloaded with user defined types.

Examples:
Dim n As Integer

Print Abs( -1 )
Print Abs( -3.1415 )
Print Abs( 42 )
Print Abs( n )

n = -69

Print Abs( n )

Output:
1
3.1415
42
0
69


Dialect Differences:

Differences from QB:

See also:

Back to Math

There are no comments on this page. [Add comment]

Valid XHTML 1.0 Transitional :: Valid CSS :: Powered by Wikka Wakka Wiki 1.1.6.0



sf.net phatcode