среда, 14 сентября 2011 г.

C++: How to round number until N'th digit after decimal point

#include < iostream >
#include < iomanip >
using namespace std;

int main() {
    cout.setf(ios::fixed);
    cout.setprecision(2);
    cout << 98765.12345 // 98765.12
}

Комментариев нет:

Отправить комментарий