asp.net.ph

Math.Round Method ( Decimal, Int32 )

System Namespace   Math Class


Returns the number with the specified precision nearest the specified value.

[ VB ]
Overloads Public Shared Function Round ( _
   ByVal d As Decimal, _
   ByVal decimals As Integer _
) As Decimal

[ C# ]
public static decimal Round (
   decimal d,
   int decimals
);

[ C++ ]
public: static Decimal Round (
   Decimal d,
   int decimals
);

[ JScript ]
public static function Round (
   d : Decimal,
   decimals : int
) : Decimal;

Parameters

d
A Decimal number to be rounded.
decimals
The number of significant fractional digits ( precision ) in the return value.

Return Value

The number nearest d with precision equal to decimals. If d is halfway between two numbers, one of which is even and the other odd, then the even number is returned. If the precision of d is less than decimals, then d is returned unchanged.

Remarks

The decimals parameter specifies the number of significant fractional digits in the return value and ranges from 0 to 28. If decimals is zero, then a whole number is returned.

The behavior of this method follows IEEE Standard 754, section 4. This kind of rounding is sometimes called rounding to nearest, or banker's rounding. If decimals is zero, this kind of rounding is sometimes called rounding toward zero.

Example

[ Visual Basic, C#, C++ ] The following code example demonstrates rounding to nearest.

[ VB ] 
Math.Round ( 3.44, 1 ) 'Returns 3.4.
Math.Round ( 3.45, 1 ) 'Returns 3.4.
Math.Round ( 3.46, 1 ) 'Returns 3.5.

[ C# ] 
Math.Round ( 3.44, 1 ); //Returns 3.4.
Math.Round ( 3.45, 1 ); //Returns 3.4.
Math.Round ( 3.46, 1 ); //Returns 3.5.

[ C++ ] 

Math::Round ( 3.44, 1 ); //Returns 3.4.
Math::Round ( 3.45, 1 ); //Returns 3.4.
Math::Round ( 3.46, 1 ); //Returns 3.5.
See Also

Math Members   Math.Round Overload List   Ceiling   Floor Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph