vote up 2 vote down star

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

flag

48% accept rate

3 Answers

vote up 7 vote down check

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|flag
vote up 3 vote down

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

link|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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