在C#中,Min(Single,Single)是MathF类方法,用于返回两个指定数字中的最小值。
用法: public static float Min (float x, float y);
Here, x and y are the two floating point numbers which are compared.
返回类型:此方法返回在参数列表中指定的两个数字中的最小值,并且返回类型取决于传递的参数类型。
例:
// C# program to demonstrate the
// MathF.Min(Single, Single) method
using System;
class GFG {
// Main Method
static void Main()
{
// taking different float values
float f1 = 56.48f, f2 = 78.123457f;
float f3 = -785.2f, f4 = -58.2547f;
// displaying result
Console.WriteLine(MathF.Min(f1, f2));
Console.WriteLine(MathF.Min(f3, f4));
}
}
输出:
56.48 -785.2
相关用法
- C# MathF.Exp()用法及代码示例
- C# MathF.Cos()用法及代码示例
- C# MathF.Tan()用法及代码示例
- C# MathF.Abs()用法及代码示例
- C# MathF.Sin()用法及代码示例
- C# MathF.Pow()用法及代码示例
- C# MathF.Log()用法及代码示例
- C# MathF.Max()用法及代码示例
- C# MathF.Cbrt()用法及代码示例
- C# Char.GetTypeCode()用法及代码示例
- C# Char.GetHashCode()用法及代码示例
- C# MathF.Atan()用法及代码示例
- C# BitArray.RightShift()用法及代码示例
- C# BitArray.LeftShift()用法及代码示例
- C# Int16.GetTypeCode用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 MathF.Min() Method in C# with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。