ASP/VBScript - Int() vs CInt() - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T21:24:22Z http://stackoverflow.com/feeds/question/20675 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/20675/asp-vbscript-int-vs-cint 2 ASP/VBScript - Int() vs CInt() Terrapin 2008-08-21T18:02:48Z 2009-10-22T04:22:08Z <p>What is the difference in ASP/VBScript between Int() &amp; CInt()?</p> http://stackoverflow.com/questions/20675/asp-vbscript-int-vs-cint/20678#20678 6 Answer by Pascal Paradis for ASP/VBScript - Int() vs CInt() Pascal Paradis 2008-08-21T18:04:43Z 2008-08-21T18:04:43Z <ul> <li><a href="http://www.w3schools.com/Vbscript/func_int.asp" rel="nofollow">Int()</a></li> </ul> <blockquote> <p>The Int function returns the integer part of a specified number.</p> </blockquote> <ul> <li><a href="http://www.w3schools.com/VBScript/func_cint.asp" rel="nofollow">CInt()</a></li> </ul> <blockquote> <p>The CInt function converts an expression to type Integer.</p> </blockquote> <p>And the best answer comes from <a href="http://msdn.microsoft.com/en-us/library/fctcwhw9(VS.85).aspx" rel="nofollow">MSDN</a></p> <blockquote> <p>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.</p> </blockquote> http://stackoverflow.com/questions/20675/asp-vbscript-int-vs-cint/25613#25613 3 Answer by Mark Brackett for ASP/VBScript - Int() vs CInt() Mark Brackett 2008-08-25T03:11:03Z 2008-08-25T03:11:03Z <p>And, the most important difference (IME, at least)....is that CInt <a href="http://www.bellaonline.com/articles/art18651.asp" rel="nofollow">overflows at 32,767</a>.</p> http://stackoverflow.com/questions/20675/asp-vbscript-int-vs-cint/360003#360003 1 Answer by Vlado for ASP/VBScript - Int() vs CInt() Vlado 2008-12-11T16:38:42Z 2008-12-11T16:38:42Z <p>Here is another difference:</p> <p>Script:</p> <pre><code>wscript.echo 40.91 * 100 wscript.echo Int(40.91 * 100) wscript.echo CInt(40.91 * 100) </code></pre> <p>result:</p> <pre><code>4091 4090 (????) 4091 </code></pre> <p>Any thoughts?</p>