반응형
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
- list
- numpy
- dataframe
- google apps script
- GIT
- math
- matplotlib
- Redshift
- hive
- PANDAS
- Mac
- Google Excel
- 파이썬
- Google Spreadsheet
- gas
- Kotlin
- Java
- c#
- array
- Github
- Apache
- PostgreSQL
- SQL
- django
- string
- Python
- Excel
- Tkinter
- PySpark
Archives
- Today
- Total
달나라 노트
C# : Math.Sqrt (제곱근) 본문
728x90
반응형
C#에서 Math class는 다양한 수학적인 기능을 제공합니다.
Math.Sqrt는 제곱근을 return해줍니다.
using System;
class MyProgram
{
static void Main()
{
int value1 = 9;
double result = Math.Sqrt(value1);
Console.WriteLine(result);
}
}
-- Result
3
주의할 점은 Sqrt의 결과값은 실수이므로 double 형태로 선언한 result 변수에 Sqrt의 결과를 할당합니다.
728x90
반응형
'C# > C#' 카테고리의 다른 글
C# : Math.Round (반올림), Math.Ceiling (올림), Math.Floor (내림) (0) | 2022.03.23 |
---|---|
C# : Math.Abs (절대값) (0) | 2022.03.23 |
C# : Math.Max, Math.Min(최대값, 최소값) (0) | 2022.03.23 |
C# : &&, ||, ~ (논리 연산자, and, or, not) (0) | 2022.03.23 |
C# : ReadLine, Convert (user input 받기, 자료형 변환) (0) | 2022.03.23 |
Comments