INT - QB64 Wiki

INT

From QB64 Wiki

Revision as of 22:49, 9 May 2011 by Clippy (Talk | contribs)
(diff) ← Older revision | Current revision (diff) | Newer revision → (diff)
Jump to: navigation, search

The INT function rounds a numeric value down to the next whole number or INTEGER(toward less negative).


Syntax:

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.

PRINT INT(2.5) PRINT INT(-2.5)

2 -3


See also:



Navigation:
Go to Keyword Reference - Alphabetical
Go to Keyword Reference - By usage
Go to Main WIKI Page