up vote 5 down vote favorite
1
share [g+] share [fb]

What is the difference in ASP/VBScript between Int() & CInt()?

link|improve this question

45% accept rate
feedback

4 Answers

up vote 9 down vote accepted

The Int function returns the integer part of a specified number.

The CInt function converts an expression to type Integer.

And the best answer comes from MSDN

CInt differs from the Fix and Int functions, which truncate, rather than round, the fractional part of a number. When the fractional part is exactly 0.5, the CInt function always rounds it to the nearest even number. For example, 0.5 rounds to 0, and 1.5 rounds to 2.

link|improve this answer
feedback

And, the most important difference (IME, at least)....is that CInt overflows at 32,767.

link|improve this answer
feedback

Here is another difference:

Script:

wscript.echo 40.91 * 100
wscript.echo Int(40.91 * 100)
wscript.echo CInt(40.91 * 100)

result:

4091
4090   (????)
4091

Any thoughts?

link|improve this answer
1  
Floating point rounding. The actual value of "40.91" in the code is extremely close to but just less than the theoretical decimal value. CInt rounds to nearest, Int truncates. – Thom Smith May 28 '10 at 17:22
feedback

The usual answer for this issue is to manually force a re-rounding. This problem is as old as FORTRAN.

Instead of

a = int(40.91 * 100)

Use

b = 40.91 * 100<BR>a = int(b + 0.5)

Very old trick, still useful in Excel spreadsheets from time to time.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.