打印精度

发布于 2024-11-23 15:16:22 字数 96 浏览 1 评论 0原文

我正在用 C 编写一个程序,并且有几个用于调试的 printf 语句。有没有办法改变 printf 上十六进制输出的精度?例子。我有 0xFFF 但我希望它打印出 0x0FFF。

I am writing a program in C and I have several printf statements for debugging. Is there a way to change the precision for a HEX output on printf? Example. I have 0xFFF but I want it to print out 0x0FFF.

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

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

发布评论

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

评论(2

琉璃梦幻 2024-11-30 15:16:23

printf("%04X", x);

0 表示“用零填充”,4 表示“至少四个字符宽”。

对于整数,不使用术语“精度”(因为整数精确的),而是使用“字段宽度”或类似的东西。精度是打印浮点数时以科学计数法表示的位数。

Say printf("%04X", x);.

The 0 means "pad with zeros", the 4 means "at least four characters wide".

For integers, one doesn't use the term "precision" (because integers are precise), but rather "field width" or something like that. Precision is the number of digits in scientific notation when printing floats.

赤濁 2024-11-30 15:16:23

以十六进制打印时,可以使用 printf 的精度字段。

例如:

int i = 0xff;
printf ("i is 0x%.4X\n", i);
printf ("i is  %#.4X\n", i);

都会打印:
0x00FF

You can use the precision field for printf when printing in hex.

For instance:

int i = 0xff;
printf ("i is 0x%.4X\n", i);
printf ("i is  %#.4X\n", i);

Will both print:
0x00FF

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