当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# MathF.Min()用法及代码示例


在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


相关用法


注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 MathF.Min() Method in C# with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。