1
1
Fork 0
mirror of https://github.com/DualBrain/QB64.git synced 2023-11-19 13:10:13 +00:00
QB64-website/wiki/INT.md
2022-12-24 19:12:43 -06:00

803 B

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

Syntax

result = INT(expression)

Parameter(s)

  • expression is any Data types 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.

Example(s)

Displaying the rounding behavior of INT.


PRINT INT(2.5)
PRINT INT(-2.5)


 2 
-3

See Also