當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。