1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-26 09:45:54 +00:00
QB64-PE/internal/help/INT.txt
SMcNeill 6e01fc8dce Altered string compare routines (<,<=,>,>=) so they don't give false results with CHR$(0).
Added new _STRCMP and _STRICMP commands for quick string comparisons.
Cleaned up QB64 to finish removing the QUI (quick user insert) code and folders.
Altered UCASE and LCASE routines to be faster in some situations for us.
2014-09-22 08:19:03 -04:00

29 lines
577 B
Plaintext

The '''INT''' function rounds a numeric value down to the next whole number or [[INTEGER]](toward less negative).
{{PageSyntax}}
:: result = [[INT]](''expression'')
* [[INT]] returns the first whole number that is less than ''expression''.
* This means that [[INT]] rounds down for both positive and negative numbers.
''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]]
{{PageNavigation}}