일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- PANDAS
- Github
- Apache
- Mac
- Tkinter
- Google Spreadsheet
- gas
- 파이썬
- array
- Excel
- numpy
- PySpark
- GIT
- django
- Python
- hive
- dataframe
- Redshift
- Kotlin
- list
- PostgreSQL
- c#
- SQL
- string
- math
- Google Excel
- google apps script
- Java
- matplotlib
- Today
- Total
목록c# (87)
달나라 노트
Math.Sin(x) method는 x값을 받아 x의 Sin값을 return합니다. y = sin(x)에서 x값을 받아 y값을 return하는 것과 동일합니다. Math.Cos(x) method는 x값을 받아 x의 Cos값을 return합니다. y = cos(x)에서 x값을 받아 y값을 return하는 것과 동일합니다. Math.Tan(x) method는 x값을 받아 x의 Sin값을 return합니다. y = tan(x)에서 x값을 받아 y값을 return하는 것과 동일합니다. 여기서 x는 모두 라디안(radian) 값입니다. using System; class MyProgram { public static void Main() { var pi = Math.PI; Console.WriteLine("Sin..
Math.PI는 파이값(원주율)을 return합니다. using System; class MyProgram { public static void Main() { var pi = Math.PI; Console.WriteLine(pi); } } -- Result 3.14159265358979
Math.Sqrt(a)는 어떤 숫자 a를 인자로 받으며 a의 제곱근을 return합니다. using System; class MyProgram { public static void Main() { var sqrt_test = Math.Sqrt(9); Console.WriteLine(sqrt_test); } } -- Result 3 Math.Sqrt(9)는 9의 제곱근을 계산합니다. 따라서 3을 return합니다.
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 예시는 위와 같습니다. 인자로서는 정수와 실수 모두 받을 수 있습니다.