Math.Max
Math.Min
Math.Pow
Returns the smaller of two numbers.
Math.Min(val1, val2)
아래 값을 입력하면 예제에 즉시 반영됩니다.
Console
WriteLine
Math
Console.WriteLine(Math.Min(10, 20)); // 10 Console.WriteLine(Math.Min(-5, -1)); // -5