在 C++ 中,我使用以下语句来显示输出:
// example
float x = 0.66004;
cout.setf(ios::fixed);
cout.setf(ios::showpoint);
cout.precision(2);
cout << x;
我的输出看起来像
0.66
如何防止显示小数点前的零?我想:
.66
std::string Foo = std::to_string(0.553);
std::size_t it = Foo.find(".");
if (it != std::string::npos)
{
std::cout<<Foo.erase(0, it);
}
一种可能的解决方案是转换x
为字符串(更多选项)并切断小数点前的所有内容。