gpt4 book ai didi

c++ - 在 C++ 中将 Double 转换为 String

转载 作者:可可西里 更新时间:2023-11-01 15:38:25 27 4
gpt4 key购买 nike

我在尝试将 double 型转换为 C++ 字符串时遇到了一些问题。这是我的代码

std::string doubleToString(double val)
{
std::ostringstream out;
out << val;
return out.str();
}

我遇到的问题是,是否将 double 值作为“10000000”传入。那么返回的字符串值为 1e+007

如何获取字符串值“10000000”

最佳答案

#include <iomanip>
using namespace std;
// ...
out << fixed << val;
// ...

您还可以考虑使用 setprecision 来设置小数位数:

out << fixed << setprecision(2) << val;

关于c++ - 在 C++ 中将 Double 转换为 String,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/864250/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com