반응형
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
- Redshift
- Google Spreadsheet
- Tkinter
- Java
- django
- math
- PANDAS
- c#
- Apache
- SQL
- PySpark
- list
- string
- Kotlin
- hive
- Github
- array
- Google Excel
- google apps script
- 파이썬
- dataframe
- GIT
- Excel
- Mac
- matplotlib
- gas
- PostgreSQL
- numpy
Archives
- Today
- Total
달나라 노트
C# : Math.Sign (부호, 양수/음수) 본문
728x90
반응형
Math.Sign(x) method는 어떤 숫자 x를 인자로 받으며 이 x값의 부호를 return합니다.
x > 0 -> 1 return
x = 0 -> 0 return
x < 0 -> -1 return
using System;
class MyProgram
{
public static void Main()
{
Console.WriteLine(Math.Sign(125.813));
Console.WriteLine(Math.Sign(0));
Console.WriteLine(Math.Sign(-125.813));
}
}
-- Result
1
0
-1
728x90
반응형
'C# > C#' 카테고리의 다른 글
C# : Math.Log, Math.Log10 (Log, Log10, LogE) (0) | 2022.04.18 |
---|---|
C# : Math.E (자연 상수) (0) | 2022.04.18 |
C# : Sin, Cos, Tan (삼각함수, Sin, Cos, Tan) (0) | 2022.04.18 |
C# : Math.PI (파이값, 원주율) (0) | 2022.04.18 |
C# : Math.Sqrt (제곱근) (0) | 2022.04.18 |
Comments