C 中无宽度打印格式

发布于 2024-08-27 20:21:50 字数 187 浏览 1 评论 0原文

在 C 中,如果我有一个包含“%.2f”的 printf 语句,它表示精度是小数点后 2 位数字。我没有明确指定宽度。我有两个问题:

  1. 这是好的编程实践吗?;

  2. 不指定宽度是否意味着在打印数字时,字段的宽度将自动调整,而不管它包含多少位数?

多谢...

in C if I have a printf statement containing say "%.2f", it says that the precision is 2 digits after the decimal place. I haven't explicitly specify the width. I have two questions:

  1. Is this good programming practice?;

  2. Is without specifying the width means that the width of the field will get adjusted automatically when printing the number, irrespective of the number of digits it contains?

Thanks a lot...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一指流沙 2024-09-03 20:21:50
  1. 如果这符合您的要求,那么这是一个很好的做法。如果它做了你不想做的事情,那就是不好的做法。就这么简单。

  2. 是的,宽度已调整以适合数字。 (请注意,如果您指定了宽度,则宽度只是最小值;如果您指定了宽度而数字不适合,则结果将变得比您预期的更宽。)

  1. If this does what you want to do, then it's good practice. If it does something that you don't want to do, it's bad practice. Simple as that.

  2. Yes, the width is adjusted to fit the number. (Note that the width, if you specify it, is a minimum only; if you specified a width and the number wouldn't fit, the result would become wider than you might have expected.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文