1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 15:00:38 +00:00
QB64-PE/internal/help/INT.txt

38 lines
876 B
Plaintext
Raw Normal View History

2017-10-10 14:55:21 +00:00
The [[INT]] function rounds a numeric value down to the next whole number.
{{PageSyntax}}
2017-10-10 14:55:21 +00:00
: {{Parameter|result}} = [[INT]]({{Parameter|expression}})
{{Parameters}}
2017-10-10 14:55:21 +00:00
* {{Parameter|expression}} is any [[Data types|type]] of literal or variable numerical value or mathematical calculation.
2016-03-18 11:36:04 +00:00
{{PageDescription}}
2017-10-10 14:55:21 +00:00
* [[INT]] returns the first whole number [[INTEGER]] that is less than the {{Parameter|expression}} value.
* This means that [[INT]] rounds down for both positive and negative numbers.
2017-10-10 14:55:21 +00:00
* Use [[FIX]] to round negative values up. It is identical to [[INT]] for positive values.
2017-10-10 14:55:21 +00:00
{{PageExamples}}
''Example:'' Displaying the rounding behavior of [[INT]].
{{CodeStart}}
PRINT INT(2.5)
PRINT INT(-2.5)
{{CodeEnd}}
{{OutputStart}}
2017-10-10 14:55:21 +00:00
2
-3
{{OutputEnd}}
2017-10-10 14:55:21 +00:00
{{PageSeeAlso}}
* [[CINT]], [[CLNG]], [[FIX]]
* [[CSNG]], [[CDBL]]
2016-03-18 11:36:04 +00:00
* [[_ROUND]], [[_CEIL]]
2019-04-15 01:15:33 +00:00
{{PageNavigation}}
<