상황파악

C++ 자리수 출력 본문

C++

C++ 자리수 출력

otch80 2021. 1. 11. 14:14
cout.precision(3); // 출력할 자리수 3개
// 21.0
        
cout.setf(ios::fixed);
cout.precision(3); // 출력할 소수점 자리수 3개
// 21.000

'C++' 카테고리의 다른 글

C++ 최대값 최소값  (0) 2021.01.12
C++ vector 정렬 sort  (0) 2021.01.11
C++ vector 요소 합 acculmulate  (0) 2021.01.11
C++ - Vector 벡터란?  (0) 2021.01.11