1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-05 21:40:25 +00:00
QB64-PE/internal/help/INT.txt
2016-03-18 08:36:04 -03:00

35 lines
848 B
Plaintext

The '''INT''' function rounds a numeric value down to the next whole number or [[INTEGER]](toward less negative).
{{PageSyntax}}
:: result = '''INT('''''expression''''')'''
{{Parameters}}
* The ''expression'' is any [[TYPE]] of literal or variable numerical value or mathematical calculation.
{{PageDescription}}
* [[INT]] returns the first whole number [[INTEGER]] that is less than the ''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 with positive values.
''Example:'' Displaying the rounding behavior of [[INT]].
{{CodeStart}}
PRINT INT(2.5)
PRINT INT(-2.5)
{{CodeEnd}}
{{OutputStart}}
2
-3
{{OutputEnd}}
''See also:''
* [[CINT]], [[CLNG]], [[FIX]]
* [[CSNG]], [[CDBL]]
* [[_ROUND]], [[_CEIL]]
{{PageNavigation}}