소숫점 자리수 출력 조절 in C++

Purple·2021년 11월 1일
0

코드

#include <bits/stdc++.h>

using namespace std;

int main() {
    
    cout << fixed;
    cout.precision(2);

    cout << 2.123124215 << '\n';
    cout << 2.125124215 << '\n';
    return 0;
}
  • cout << fixed;
  • cout.precision(2);
    소수점 개수를 2개로 고정한다는 것이다. 3째자리에서 반올림하여 반영한다.

ex) 출력

profile
안녕하세요.

0개의 댓글