gpt4 book ai didi

printf() 能否为值 (-0.5) 生成 "-.5"?

转载 作者:太空狗 更新时间:2023-10-29 15:06:30 25 4
gpt4 key购买 nike

printf 可以被告知忽略小数点前的零吗?

最佳答案

对于 ISO C99 中指定的所有内容,这是不可能的。转换说明符的文档说:

f,F: [...] If a decimal-point character appears, at least one digit appears before it. [...]

e,E: [...] there is one digit (which is nonzero if the argument is nonzero) before the decimal-point character [...]

g,G: [...] is converted to style f or e [...]

因为其他转换说明符不会打印十进制 float ,所以这是根本不可能的。除非您找到引入另一个转换说明符的供应商扩展。但是你的程序将不再是严格有效的 C。

我想到的最佳解决方法是:

double number = 0.5;
char buf[80];
char *number = buf;
if (snprintf(buf, sizeof buf, "%f", number) <= 0)
goto cannot_happen;

while (*number == '0')
number++;
printf("%s\n", number);

关于printf() 能否为值 (-0.5) 生成 "-.5"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3871501/

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