在C#中, Min(Single,Single)是MathF类方法,用于返回两个指定数字中的最小值。
Syntax: 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