Difference between revisions of "MC-Basic:INT"
m (Text replace - "Read-Only" to "Read only") |
m (Text replace - "''<return value>''" to "<''return value''>") |
||
Line 15: | Line 15: | ||
<''expression''>: Double | <''expression''>: Double | ||
− | '' | + | <''return value''>: Long |
|RANGE= | |RANGE= |
Revision as of 09:36, 20 March 2014
This function returns the largest long value less than or equal to a numeric expression . ?Int(12.5) returns 12 ; ?Int(-12.5) returns -13
Syntax
Int(<expression>)
Availability
All versions
Type
<expression>: Double
<return value>: Long
Range
-MaxDouble to +MaxDouble
Scope
Configuration, Task or Terminal
Limitations
Read only
Examples
Value = Int(12.5)
?Int(12.5)
--> 12 ‘returns 12
?Int(-12.5)
-->-13 ‘ returns -13