#include <bits/stdc++.h> using namespace std; int main() { cout << fixed; cout.precision(2); cout << 2.123124215 << '\n'; cout << 2.125124215 << '\n'; return 0; }
ex) 출력