От: | Аноним | ||
Дата: | 15.01.08 18:56 | ||
Оценка: | 3 (1) | ||
#Имя: | FAQ.boost.format.double |
#include <iostream>
#include <boost/format.hpp>
using boost::format;
int main( int argc, char ** argv )
{
double tt = 2531.2344;
std::string ss = str( format("%.2f") %tt );
std::cout << ss << std::endl;
return 0;
}