What's the difference between Math.Floor() and Math.Truncate() in .NET? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T04:37:07Zhttp://stackoverflow.com/feeds/question/14http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/14/whats-the-difference-between-math-floor-and-math-truncate-in-net24What's the difference between Math.Floor() and Math.Truncate() in .NET?Anonymous User2008-08-01T00:59:11Z2009-11-24T11:33:56Z
<p>What is the difference between <code>Math.Floor()</code> and <code>Math.Truncate()</code> in C#?</p>
http://stackoverflow.com/questions/14/whats-the-difference-between-math-floor-and-math-truncate-in-net/33#3389Answer by Chris Jester-Young for What's the difference between Math.Floor() and Math.Truncate() in .NET?Chris Jester-Young2008-08-01T12:26:39Z2009-10-14T02:09:03Z<p><code>Math.Floor</code> rounds down, <code>Math.Ceiling</code> rounds up, and <code>Math.Truncate</code> rounds towards zero. Thus, <code>Math.Truncate</code> is like <code>Math.Floor</code> for positive numbers, and like <code>Math.Ceiling</code> for negative numbers. Here's the <a href="http://msdn.microsoft.com/en-us/library/system.math.truncate.aspx" rel="nofollow">reference</a>.</p>
<p>For completeness, <code>Math.Round</code> rounds to the nearest integer. If the number is exactly midway between two integers, then it rounds towards the even one. <a href="http://msdn.microsoft.com/en-us/library/system.math.round.aspx" rel="nofollow">Reference.</a></p>
<p>See also: <a href="http://stackoverflow.com/questions/14/whats-the-difference-between-math-floor-and-math-truncate-in-c/580252#580252">Pax Diablo's answer</a>. Highly recommended!</p>
http://stackoverflow.com/questions/14/whats-the-difference-between-math-floor-and-math-truncate-in-net/2086#20868Answer by chopeen for What's the difference between Math.Floor() and Math.Truncate() in .NET?chopeen2008-08-05T11:01:47Z2009-02-24T22:26:38Z<p>Some examples:</p>
<pre><code>Round(1.5) = 2
Round(2.5) = 2
Round(1.5, MidpointRounding.AwayFromZero) = 2
Round(2.5, MidpointRounding.AwayFromZero) = 3
Round(1.55, 1) = 1.6
Round(1.65, 1) = 1.6
Round(1.55, 1, MidpointRounding.AwayFromZero) = 1.6
Round(1.65, 1, MidpointRounding.AwayFromZero) = 1.7
Truncate(2.10) = 2
Truncate(2.00) = 2
Truncate(1.90) = 1
Truncate(1.80) = 1
</code></pre>
http://stackoverflow.com/questions/14/whats-the-difference-between-math-floor-and-math-truncate-in-net/580252#58025236Answer by paxdiablo for What's the difference between Math.Floor() and Math.Truncate() in .NET?paxdiablo2009-02-24T02:39:27Z2009-05-22T07:19:04Z<p>Follow these links for the MSDN descriptions of:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/system.math.floor.aspx" rel="nofollow"><code>Math.Floor</code></a>, which rounds down towards negative infinity.</li>
<li><a href="http://msdn.microsoft.com/en-us/library/system.math.ceiling.aspx" rel="nofollow"><code>Math.Ceiling</code></a>, which rounds up towards positive infinity.</li>
<li><a href="http://msdn.microsoft.com/en-us/library/system.math.truncate.aspx" rel="nofollow"><code>Math.Truncate</code></a>, which rounds up or down towards zero.</li>
<li><a href="http://msdn.microsoft.com/en-us/library/system.math.round.aspx" rel="nofollow"><code>Math.Round</code></a>, which rounds to the nearest integer or specified number of decimal places. You can specify the behavior if it's exactly equidistant between two possibilities, such as rounding so that the final digit is even ("<code>Round(2.5,MidpointRounding.ToEven)</code>" becoming 2) or so that it's further away from zero ("<code>Round(2.5,MidpointRounding.AwayFromZero)</code>" becoming 3).</li>
</ul>
<p>The following diagram and table may help:</p>
<pre><code>-3 -2 -1 0 1 2
+--|------+---------+----|----+--|------+----|--|-+
a b c d e
a=-2.7 b=-0.5 c=0.3 d=1.5 e=2.8
====== ====== ===== ===== =====
Floor -3 -1 0 1 2
Ceiling -2 0 1 2 3
Truncate -2 0 0 1 2
Round (ToEven) -3 0 0 2 3
Round (AwayFromZero) -3 -1 0 2 3
</code></pre>
<p>Note that <code>Round</code> is a lot more powerful than it seems, simply because it can round to a specific number of decimal places. All the others round to zero decimals always. For example:</p>
<pre><code>n = 3.145;
a = System.Math.Round (n, 2, MidpointRounding.ToEven); // 3.14
b = System.Math.Round (n, 2, MidpointRounding.AwayFromZero); // 3.15
</code></pre>
<p>With the other functions, you have to use multiply/divide trickery to achieve the same effect:</p>
<pre><code>c = System.Math.Truncate (n * 100) / 100; // 3.14
d = System.Math.Ceiling (n * 100) / 100; // 3.15
</code></pre>