Int: Difference between revisions
Jump to navigation
Jump to search
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
''This function is for BASIC compatibility. It is not available in pure JavaScript projects.'' | |||
Int(''number'') | Int(''number'') | ||
Line 9: | Line 11: | ||
<pre> | <pre> | ||
Rem Int Example | Rem Int Example | ||
'Int converts floats to the next | 'Int converts floats to the next smallest integer | ||
Dim Pos, Neg | Dim Pos, Neg | ||
Pos = Atn(1) * 4 | Pos = Atn(1) * 4 | ||
Line 15: | Line 17: | ||
Print "Int(pi) = " & Int(Pos) | Print "Int(pi) = " & Int(Pos) | ||
Print "Int(-pi) = " & Int(Neg) | Print "Int(-pi) = " & Int(Neg) | ||
</pre> | </pre> | ||
Line 43: | Line 33: | ||
[[Category:Math]] | [[Category:Math]] | ||
[[Category:BASIC Functions]] |
Latest revision as of 15:27, 25 March 2019
This function is for BASIC compatibility. It is not available in pure JavaScript projects.
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 (Basic)
Rem Int Example 'Int converts floats to the next smallest integer 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