INT

From QB64 Wiki
Revision as of 18:12, 20 September 2017 by imported>SMcNeill (style guidelines)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The INT function rounds a numeric value down to the next whole number.


Syntax

result = INT(expression)


Parameters

  • expression is any type of literal or variable numerical value or mathematical calculation.


Description

  • 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 for positive values.


Examples

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