1

在 C++ 中,我使用以下语句来显示输出:

// example
float x = 0.66004;
cout.setf(ios::fixed);  
cout.setf(ios::showpoint);  
cout.precision(2);
cout << x;

我的输出看起来像

0.66

如何防止显示小数点前的零?我想:

.66
4

2 回答 2

0
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);
}
于 2013-10-06T22:08:12.147 回答
0

一种可能的解决方案是转换x为字符串(更多选项)并切断小数点前的所有内容。

于 2013-10-06T22:10:39.900 回答