Int

From NSB App Studio
Revision as of 18:03, 24 August 2012 by Brendon (talk | contribs)
Jump to navigation Jump to search

Int(number)

Description

Int removes the fractional part of a number, returning the next smallest integer. The required parameter, number, is any valid numeric expression.

Example

Rem Int Example
'Int converts floats to the next smallestint
Dim Pos, Neg
Pos = Atn(1) * 4
Neg = -Pos
Print "Int(pi) = " & Int(Pos)
Print "Int(-pi) = " & Int(Neg)

Output

Int(pi) = 3
Int(-pi) = -4

Related Items

Fix