반응형
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
- Google Spreadsheet
- matplotlib
- c#
- hive
- 파이썬
- django
- dataframe
- math
- Google Excel
- Mac
- numpy
- list
- PySpark
- gas
- PostgreSQL
- string
- Python
- Excel
- Kotlin
- array
- GIT
- Java
- Redshift
- Apache
- Github
- SQL
- Tkinter
- PANDAS
- google apps script
Archives
- Today
- Total
달나라 노트
C# : Math.Truncate (소수점 삭제) 본문
728x90
반응형
Math.Truncate(x)는 어떠한 실수 x를 인자로 받아 x의 소수점부분을 모두 삭제한 후 정수부분만 return합니다.
using System;
class MyProgram
{
public static void Main()
{
Console.WriteLine(Math.Truncate(10.735));
Console.WriteLine(Math.Truncate(-10.735));
}
}
-- Result
10
-10
728x90
반응형
'C# > C#' 카테고리의 다른 글
C# : Form ClientSize (Window 사용가능한 영역 크기) (0) | 2022.04.20 |
---|---|
C# : Math.Exp (자연상수의 거듭제곱) (0) | 2022.04.18 |
C# : Math.Log, Math.Log10 (Log, Log10, LogE) (0) | 2022.04.18 |
C# : Math.E (자연 상수) (0) | 2022.04.18 |
C# : Math.Sign (부호, 양수/음수) (0) | 2022.04.18 |
Comments