본문 바로가기

Programming/Tip&Informaion

[c++] cout 소수점 자릿수 정하기 2


    cout.precision(6);
    cout << fixed << (double)pos/n << endl << (double)neg/n << endl << (double)zer/n << endl;

'Programming > Tip&Informaion' 카테고리의 다른 글

[C++] cin 하고 getstring 하는 법  (0) 2016.04.30
[C++] 2차원 배열 동적 할당  (0) 2016.03.24
[c++] sort  (0) 2016.03.01
EOF (테스트 케이스가 주어지지 않았을 때)  (0) 2016.02.18
[c++] 공백까지 입력받기  (0) 2016.02.11