gpt4 book ai didi

c++ - 货币格式化 C++

转载 作者:行者123 更新时间:2023-11-30 02:35:06 24 4
gpt4 key购买 nike

所以我正在尝试创建一个程序,它将从用户那里获取一个值并将其转换为货币格式(美国:$)。我似乎快到了,我遇到的唯一问题是当我输入一个没有小数的值时,它不会用逗号格式化。我怎样才能改变他的功能,以便无论是否有小数点,它都会格式化它。

void dollarFormat(string &currency)
{
int decimal;
decimal = currency.find('.'); // Find decimal point
if (decimal > 3) // Insert commas
{
for (int x = decimal - 3; x > 0; x -= 3)
currency.insert(x, ",");
}
currency.insert(0, "$"); // Insert dollar sign
}

最佳答案

std::string::npos 进行测试:

void dollarFormat(std::string &currency)
{
auto decimal = currency.find('.'); // find decimal point
if(decimal == std::string::npos) // no decimal point
decimal = currency.length();
if (decimal > 3) // Insert commas
{
for (auto x = decimal - 3; x > 0; x -= 3)
currency.insert(x, ",");
}
currency.insert(0, "$"); // Insert dollar sign
}

旁注:为了使您的代码可移植,请确保使用 std::string::size_type作为 decimal 的类型而不是 int。或者,更好的是,使用 auto 类型推导:

auto decimal = currency.find('.');

关于c++ - 货币格式化 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33978812/

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