감동, 마음이 움직이는 것
[C++] double 출력시 소수점 자리수 조절 (fixed) 본문
Tips (Utility, Computer Language, and etc.)
[C++] double 출력시 소수점 자리수 조절 (fixed)
Struggler J. 2017. 6. 29. 17:03http://pmoncode.tistory.com/20
std::cout
에서 소수점 몇 번째까지 출력할지를 설정한 뒤 std::fixed
format specifier를 쓸 수 있습니다
int main(){
double d = 3.14159265358979;
cout.precision(11);
cout << fixed << d << endl;
}
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[c++] debugging using Valgrind (0) | 2017.07.09 |
---|---|
[Installing software] (0) | 2017.06.29 |
[mathematica] 현재 디렉토리 지정 (0) | 2017.06.28 |
[Mathematica] Schematic figure using Graphics (0) | 2017.06.20 |
[Mahtematica] StreamDensityPlot (0) | 2017.06.20 |