C# 数学
C# Math 类有很多方法,允许您对数字执行数学运算。
Math.Max(x,y)
Math.Max(x,y)
方法可用于查找 x 和 y 中的最高值。
Math.Min(x,y)
Math.Min(x,y)
方法可用于查找 x 和 y 中的最低值。
Math.Sqrt(x)
Math.Sqrt(x)
方法返回 x 的平方根。
Math.Abs(x)
Math.Abs(x)
方法返回 x 的绝对值(正值)。
Math.Round()
Math.Round()
将数字四舍五入到最接近的整数。