There was an error while loading. Please reload this page.
The CINT function rounds decimal point numbers up or down to the nearest INTEGER value.
value% = CINT(expression)
Shows how CINT rounds values up or down as in "bankers' rounding".
a% = CINT(1.49): b% = CINT(1.50): c = 11.5 COLOR c: PRINT a%, b%, c
1 2 11.5
Navigation