删除尾随零 - c++

Removing trailing zeros - c++

本文关键字:c++ 删除      更新时间:2023-10-16

此代码:

cout<< to_string(x) + "m ----> " + to_string(x *0.001)+ "km"<<endl;

使用此输出:0.002000

但是,我想删除尾随的额外零,但它应该在一行代码中,因为我有很多像上面这样的行。

试试这个狙击手:

cout << "test zeros" << endl;
double x = 200;
cout << "before" << endl;
cout<< std::to_string(x) + "m ----> " + std::to_string(x *0.001)+ "km"<<endl;    

std::string str = std::to_string(x * 0.001);
str.erase ( str.find_last_not_of('0') + 1, std::string::npos );
cout << "after" << endl;
cout<< std::to_string(x) + "m ----> " + str + "km"<<endl;

带输出:

test zeros
before
200.000000m ----> 0.200000km
after
200.000000m ----> 0.2km

然后更好std::setprecision因为您不需要决定要保留多少 num,而是让实现为您找到它。

此处的文档提供了一些额外信息。

尝试使用std::setprecsion()

设置小数精度

设置用于设置输出操作浮点值格式的小数精度。

因此,在您的情况下,您可以使用:

std::cout << std::setprecision(3) 

这将删除从 0.0020000 到 0.002 的尾随零

编辑

当您想在代码中使用to_string时,以下代码有效:

#include <iostream>
using namespace std;
int main(){
int x=1;
string str2 = to_string(x *0.001);
str2.erase ( str2.find_last_not_of('0') + 1, std::string::npos );;
std::cout<<to_string(x)+ "m ----> " + str2+  "km";
}