gpt4 book ai didi

C 的 strtod() 返回错误值

转载 作者:行者123 更新时间:2023-12-04 10:34:01 26 4
gpt4 key购买 nike

我目前正在为我大学的实验室练习开发一个银行终端程序。

让我大吃一惊的是一个函数,它应该接受用户输入的转账金额,检查它是否符合所有要求,如果符合,则返回提供给程序的值。

我们的导师对所有确保输入安全的方法都很生气,所以我必须对任何类型的不一致调用错误。值(value)太高?错误。负值或零值?错误。比 0.01 更精确的数字?错误。输入中的非数字非点字符?错误。

因此,我的函数肯定过于复杂,但我对此没有意见。让我感到困惑的是,atof()strtod() 函数都以某种错误的方式读取数字。

long double take_amount()
{
char input[21];
bool success, correct;
unsigned long int control1;
long double amount, control, control2, control3;

do
{
success = true, correct = true;
printf("\t\tAmount:\t\t");
success = scanf("%20[^ \t\n]c", input);
__fpurge(stdin);

correct = check(input, 'b');

amount = strtod(input, NULL);

printf("\n\tGOT %.20Lf\n", amount); ///

control = amount * 100;
control1 = (unsigned long int)floor(control);
control2 = (long double) control1;
control3 = control2 - control;

printf("\n\tGOT2 %.20Lf\n", control3); ///

if (control3 != 0)
{
if (control3 >= 1 || control3 <= -1)
{
printf("\n\t\tWe are sorry, but for the safety reasons it is impossible to transfer");
printf("\n\t\tsuch a great amounts while online. If you really wish to finalize");
printf("\n\t\tthis operation, please, visit the closest division of our bank.");
printf("\n\t\tWe are sory for the inconvenience and wish you a pleasent day.");
press_enter();

}
correct = false;
printf("\nDAMN\n"); ///

}

if (amount <= 0)
{
correct = false;
printf("\nGOD DAMN\n"); ///
}

if(success == false || correct == false)
{
printf("\n\t\tInvalid input, please try again.\n\n");
}
else
{
printf("\t\t\t\t%.2Lf\n", amount);
printf("\n\t\tIs it correct input? ((Y)es/(N)o/(E)xit)");
if (accept())
{
break;
}
else
{
continue;
}
break;
}
}while (1);
return amount;

就我在这里使用的函数而言,check() 检查字符串是否仅包含合法字符(数字和点),press_enter() 等待输入-按 离开主菜单,accept() 只读取 y/n/e,在 y 上返回 true,在 n 上返回 false 并离开到e 上的菜单。

控制变量的冗长部分是我检查数字是否不比 0.01 更精确的解决方案。遗憾的是,由于 strtod(),它无法正常工作。

我的问题是 strtod() 没有真正起作用!即使是非常中等的数字,远离下溢或溢出,返回的值也与输入不匹配。一些例子:

    Enter the amount you would like to deposit.        Amount:     1234.45    GOT 1234.45000000000004547474    Enter the amount you would like to deposit.        Amount:     0.999    GOT 0.99899999999999999911

这不太可能是我的错,但在使用这段代码几个小时后,我仍然无法想出一个可行的解决方案,这就是为什么我向你寻求帮助,Stack Overflow 的 internauts。

有什么方法可以修复strtod() 的读取问题吗?如果没有,是否有另一种方法可以让我检查所有需要检查的输入?

编辑:请注意!

如果我还没有说,我的导师不是最容易共事的人,我现在就说。
他强制我们使用 DOUBLE 格式来保存帐户中存储的余额。我知道这一点是因为我的一位同事因为使用二元整数、美元 - 美分结构而导致他的程序被拒绝。

我非常感谢你在这里提供帮助,那么你能以某种方式解决这个问题吗?我必须使用 double type 来存储钱。我还必须检查输入中是否没有字母(在 %Lf 上设置的 scanf() 只会从末尾删除所有非数字),必须检查如果输入不是比 0.01 更精确,则必须接受输入的 xxx.xx 结构。有什么建议吗?

最佳答案

使用 strtol 读取美元,然后再次(或您自己的简单函数)读取美分,然后将它们合并为 cents += 100*dollars;不对货币使用 float 。曾经。

关于C 的 strtod() 返回错误值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30605528/

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