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