반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Excel
- array
- Apache
- SQL
- Python
- PANDAS
- Tkinter
- hive
- list
- Google Spreadsheet
- Redshift
- google apps script
- gas
- Google Excel
- numpy
- Mac
- Kotlin
- dataframe
- c#
- matplotlib
- GIT
- string
- Java
- PostgreSQL
- 파이썬
- PySpark
- django
- math
- Github
Archives
- Today
- Total
달나라 노트
C# : Math.Max, Math.Min (최대값, 최소값) 본문
728x90
반응형
Math.Max(a, b) method는 a와 b 두개의 숫자를 받고 둘 중 더 큰 수를 return합니다.
Math.Min(a, b) method는 a와 b 두개의 숫자를 받고 둘 중 더 작은 수를 return합니다.
using System;
class MyProgram
{
public static void Main()
{
var max_value = Math.Max(10.3, 12);
Console.WriteLine(max_value);
var min_value = Math.Min(10.3, 12);
Console.WriteLine(min_value);
}
}
-- Result
12
10.3
예시는 위와 같습니다.
인자로서는 정수와 실수 모두 받을 수 있습니다.
728x90
반응형
'C# > C#' 카테고리의 다른 글
C# : Math.Sqrt (제곱근) (0) | 2022.04.18 |
---|---|
C# : Math.Pow (거듭제곱 값) (0) | 2022.04.18 |
C# : Math.Abs (절대값) (0) | 2022.04.18 |
C# : Random, Next, NextDouble (랜덤한 수 추출, 난수 추출, 특정 범위 안의 랜덤한 정수 추출) (0) | 2022.04.18 |
C# : Clipping (Clip, GraphicsPath) (0) | 2022.04.15 |
Comments