FutureBasic Logo

<<    Index    >> FutureBasic

int   function



Syntax
nearestInteger = int(expr)

Description
Returns the value of expr rounded to the nearest integer.

Note
int returns a "long integer" value, which means that expr should be within the range -2147483648 through +2147483547. To obtain the integer part of numbers which are outside this range, use the fix function. (Note however that fix truncates the fraction part rather than rounding to the nearest integer. In general, fix and int don't return the same values.)

See also
fix; frac