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


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


在C#中,Max(Single,Single)是MathF类方法,用于返回两个指定数字中较大的一个。

用法: public static float Max (float x, float y);
Here, x and y are the two floating point numbers which are compared.

返回类型:此方法返回在参数列表中指定的两个数字中的最大值,并且返回类型取决于传递的参数的类型。


例:

// C# program to demonstrate the 
// MathF.Max(Single, Single) method 
using System; 
  
class GFG { 
  
    // Main Method 
    static void Main() 
    { 
        // taking different float values 
        float f1 = 34.56f, f2 = 37.3412f; 
        float f3 = -675.2f, f4 = -56.47f; 
  
        // displaying result 
        Console.WriteLine(MathF.Max(f1, f2)); 
        Console.WriteLine(MathF.Max(f3, f4)); 
    } 
}
输出:
37.3412
-56.47


相关用法


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