标签: c++ boost
如何使用Boost.Format输出百分号?
即:
boost::format msg("5% complete"); // <- how to actually output the percent sign
谢谢!
答案 0 :(得分:20)
只需用另一个百分号
boost::format msg("5%% complete");