1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 13:50:36 +00:00
QB64-PE/internal/help/INT_111.txt
Roland Heyder aeb9c0668b Updates help files for use with new Wiki parser (2nd try)
Note: Many files were removed (not yet existing/empty pages). The parser will try to download them on demand and will auto-generate text for missing pages (eg. most _gl pages).
2022-05-21 00:18:31 +02:00

40 lines
921 B
Plaintext

{{QBDLDATE:05-20-2022}}
{{QBDLTIME:23:13:49}}
The [[INT]] function rounds a numeric value down to the next whole number.
{{PageSyntax}}
: {{Parameter|result}} = [[INT]]({{Parameter|expression}})
{{Parameters}}
* {{Parameter|expression}} is any [[Data types|type]] of literal or variable numerical value or mathematical calculation.
{{PageDescription}}
* [[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.
* Use [[FIX]] to round negative values up. It is identical to [[INT]] for positive values.
{{PageExamples}}
''Example:'' Displaying the rounding behavior of [[INT]].
{{CodeStart}}
PRINT INT(2.5)
PRINT INT(-2.5)
{{CodeEnd}}
{{OutputStart}}
2
-3
{{OutputEnd}}
{{PageSeeAlso}}
* [[CINT]], [[CLNG]], [[FIX]]
* [[CSNG]], [[CDBL]]
* [[_ROUND]], [[_CEIL]]
{{PageNavigation}}