Int
 
Returns the integer part of a number

Syntax
Usage

result = Int ( number )

Parameters

number
the number

Return Value

Returns the largest integer less than or equal to the input.

Description

For example, Int(4.9) will return 4.0, and Int(-1.3) will return -2.0

The Int unary Operator can be overloaded with user defined types.

Example

Print Int(1.9)  '' will print  1
Print Int(-1.9) '' will print -2 


Dialect Differences

  • In the -lang qb dialect, this operator cannot be overloaded.

Differences from QB

  • None

See also