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
- 핑거스타일
- 프로그래머스
- 명령어
- C
- 오류
- Docker
- windows forms
- pandas
- pytorch
- LIST
- error
- paramiko
- SSH
- ubuntu
- C#
- pip
- mysql
- Selenium
- Python
- JSON
- VS Code
- 채보
- 기타 연주
- Linux
- C++
- Visual Studio
- Numpy
- label
- YOLO
- OpenCV
Archives
- Today
- Total
기계는 거짓말하지 않는다
C# 소수점 제한, 천 단위 콤마 출력 본문
string.Format 이용
class Program
{
static void Main(string[] args)
{
double d = 1125.68925;
// Format({index:포맷})
// 소수점 4자리까지 표기(숫자로 지정), 5번째 자리에서 반올림
Console.WriteLine("{0}", string.Format("{0:F4}", d));
// 소수점 3자리까지 표기(#문자로 지정), 4번째 자리에서 반올림
// 소수점이 모두 0이면 표기 안함(#은 0생략)
Console.WriteLine("{0}", string.Format("{0:0.###}", d));
// 소수점 3자리까지 표기(#, 0문자로 지정), 4번째 자리에서 반올림
// 소수점 첫째 자리 0 표기
Console.WriteLine("{0}", string.Format("{0:0.0##}", 1463));
// 소수점 둘째 자리까지 0 표기
Console.WriteLine("{0}", string.Format("{0:0.00#}", 1463));
// 천단위 콤마
Console.WriteLine("{0}", string.Format("{0:#,##0.###}", d));
}
}
ToString 이용
class Program
{
static void Main(string[] args)
{
double d = 1125.68925;
// Format({index:포맷})
// 소수점 4자리까지 표기(숫자로 지정), 5번째 자리에서 반올림
Console.WriteLine("{0}", d.ToString("F4"));
// 소수점 3자리까지 표기(#문자로 지정), 4번째 자리에서 반올림
// 소수점이 모두 0이면 표기 안함(#은 0생략)
Console.WriteLine("{0}", d.ToString("0.###"));
// 소수점 3자리까지 표기(#, 0문자로 지정), 4번째 자리에서 반올림
// 소수점 첫째 자리 0 표기
Console.WriteLine("{0}", 1463.ToString("0.0##"));
// 소수점 둘째 자리까지 0 표기
Console.WriteLine("{0}", 1463.ToString("0.00#"));
// 천단위 콤마
Console.WriteLine("{0}", d.ToString("#,##0.###"));
}
}
'C#' 카테고리의 다른 글
C# Windows Forms MenuStrip Check (0) | 2021.07.13 |
---|---|
C# Windows Forms TextBox 빈 문자 확인 (0) | 2021.07.12 |
C# Windows Forms MessageBox (0) | 2021.07.11 |
C# Windows Forms 키 입력 필터 (0) | 2021.07.10 |
C# Windows Forms Clipboard 텍스트, 이미지 얻기 (0) | 2021.07.10 |
Comments