ASP/VBScript - Int() vs CInt() - Stack Overflow most recent 30 from stackoverflow.com2009-12-14T21:24:22Zhttp://stackoverflow.com/feeds/question/20675http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/20675/asp-vbscript-int-vs-cint2ASP/VBScript - Int() vs CInt()Terrapin2008-08-21T18:02:48Z2009-10-22T04:22:08Z
<p>What is the difference in ASP/VBScript between Int() & CInt()?</p>
http://stackoverflow.com/questions/20675/asp-vbscript-int-vs-cint/20678#206786Answer by Pascal Paradis for ASP/VBScript - Int() vs CInt()Pascal Paradis2008-08-21T18:04:43Z2008-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#256133Answer by Mark Brackett for ASP/VBScript - Int() vs CInt()Mark Brackett2008-08-25T03:11:03Z2008-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#3600031Answer by Vlado for ASP/VBScript - Int() vs CInt()Vlado2008-12-11T16:38:42Z2008-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>