在C#中,MathF.Round()是MathF类方法,用于将值四舍五入到最接近的整数或小数位数。可以通过更改传递的参数的数量和类型来重载此方法。 MathF.Round()方法的重载列表中有4种方法。
- MathF.Round(Single)方法
- MathF.Round(Single,Int32)方法
- MathF.Round(Single,Int32,MidpointRounding)方法
- MathF.Round(Single,MidpointRounding)方法
在这里,我们将讨论前两种方法。
MathF.Round(Single) Method
此方法将单精度浮点值舍入为最接近的整数值。
用法: public static float Round (float x);
Here, x is a singlefloating-point number which is to be rounded. Type of this parameter is System.Single.
返回类型:它返回最接近x的整数,返回类型为System.Single。
注意:如果x的小数部分位于两个整数的中间,其中一个为偶数,另一个为奇数,则返回偶数。
例:
// C# program to demonstrate the
// MathF.Round(Single) method
using System;
class Geeks {
// Main method
static void Main(string[] args)
{
// Case-1
// A float value whose fractional part is
// less than the halfway between two
// consecutive integers
float dx1 = 12.434565f;
// Output value will be 12
Console.WriteLine("Rounded value of " + dx1 +
" is " + MathF.Round(dx1));
// Case-2
// A float value whose fractional part is
// greater than the halfway between two
// consecutive integers
float dx2 = 12.634565f;
// Output value will be 13
Console.WriteLine("Rounded value of " + dx2 +
" is " + MathF.Round(dx2));
}
}
输出:
Rounded value of 12.43456 is 12 Rounded value of 12.63457 is 13
MathF.Round(Single, Int32) Method
此方法将单个精度浮点值舍入为指定数量的小数位数。
用法: public static float Round (float x, int digits);
参数:
x:要舍入的单个浮点数。此参数的类型为System.Single。 y:这是返回值中的小数位数。此参数的类型为System.Int32。
返回类型:它返回最接近x的整数,其中包含与y相等的小数位数,返回类型为System.Single。
异常:如果y的值小于0或大于15,则此方法将提供ArgumentOutOfRangeException。
例:
// C# program to demonstrate the
// MathF.Round(Single, Int32) Method
using System;
class Geeks {
// Main method
static void Main(string[] args)
{
// float type
float dx1 = 12.434565f;
// using method
Console.WriteLine("Rounded value of " + dx1 +
" is " + MathF.Round(dx1, 4));
// float type
float dx2 = 12.634565f;
// using method
Console.WriteLine("Rounded value of " + dx2 +
" is " + MathF.Round(dx2, 2));
}
}
输出:
Rounded value of 12.43456 is 12.4346 Rounded value of 12.63457 is 12.63
相关用法
- C# MathF.Sin()用法及代码示例
- C# MathF.Min()用法及代码示例
- C# MathF.Tan()用法及代码示例
- C# MathF.Log()用法及代码示例
- C# MathF.Abs()用法及代码示例
- C# MathF.Cos()用法及代码示例
- C# MathF.Max()用法及代码示例
- C# MathF.Pow()用法及代码示例
- C# MathF.Exp()用法及代码示例
- C# MathF.Atanh()用法及代码示例
- C# MathF.Log10()用法及代码示例
- C# MathF.Sign()用法及代码示例
- C# MathF.Floor()用法及代码示例
- C# UInt16.GetHashCode用法及代码示例
- C# MathF.Round()函数用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 MathF.Round() Method in C# with Examples | Set – 1。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。