在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
相關用法
- C# MathF.Exp()用法及代碼示例
- C# MathF.Cos()用法及代碼示例
- C# MathF.Tan()用法及代碼示例
- C# MathF.Abs()用法及代碼示例
- C# MathF.Min()用法及代碼示例
- C# MathF.Sin()用法及代碼示例
- C# MathF.Pow()用法及代碼示例
- C# MathF.Log()用法及代碼示例
- C# MathF.Cbrt()用法及代碼示例
- C# Char.GetTypeCode()用法及代碼示例
- C# Char.GetHashCode()用法及代碼示例
- C# MathF.Atan()用法及代碼示例
- C# BitArray.RightShift()用法及代碼示例
- C# BitArray.LeftShift()用法及代碼示例
- C# Int16.GetTypeCode用法及代碼示例
注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 MathF.Max() Method in C# with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。