字符串格式:%f float 中的小数位数更少?
好吧,我使用 %f
来显示字符串中的浮点值。但是,这些值太准确(小数点后大约 6 位小数)。我只想显示 1 位小数。但如何呢?
Well, I am using %f
for displaying float values in my string. However, the values are too accurate (around 6 decimal digits after the point). I'd like to only display 1 decimal. But how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
%0.2f
或小数点后的其他数字。%0.2f
or some other number after the decimal point.我认为这应该有效。如需更多小数,请将 0.1 更改为 0.2、0.3、0.4 ... 等。
I think that should work. For more decimals change 0.1 to 0.2, 0.3, 0.4 ... etc.
http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/Strings/Articles/formatSpecifiers.html#//apple_ref/doc/uid/TP40004265
和
< a href="http://pubs.opengroup.org/onlinepubs/009695399/functions/printf.html" rel="nofollow">http://pubs.opengroup.org/onlinepubs/009695399/functions/printf.html
http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/Strings/Articles/formatSpecifiers.html#//apple_ref/doc/uid/TP40004265
and
http://pubs.opengroup.org/onlinepubs/009695399/functions/printf.html