forked from QB64-Phoenix-Edition/QB64pe
-
Notifications
You must be signed in to change notification settings - Fork 0
INT
Samuel Gomes edited this page Nov 8, 2022
·
1 revision
The INT function rounds a numeric value down to the next whole number.
result = INT(expression)
- expression is any Data types of literal or variable numerical value or mathematical calculation.
- 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.
Displaying the rounding behavior of INT.
PRINT INT(2.5)
PRINT INT(-2.5)
2
-3