Printf 数字右对齐
我正在尝试格式化一个值从 0 到 9,999 的数字。我希望始终显示 2 位最高有效数字,即
5000 -> 50
0000-> 00
如果任一最低有效数字非零,则应显示它们,即
150 -> 00 015
101-> 0101
可以通过一些 hackery 来完成,但是 C 的 printf 可以直接做到这一点吗?
I'm trying to format a number that has a value from 0 to 9,999. I would like the 2 most significant digits to always display, i.e.
5000 -> 50
0000 -> 00
If either of the least significant digits are non-zero they should be displayed, i.e.
150 -> 015
101 -> 0101
It can be done with some hackery, but can C's printf do this directly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,您可以使用
printf
来实现此目的Yes you can use
printf
for this丑陋,但据我所知,我正在努力:
我会尝试更多地打高尔夫球:
Ugly, but working as far as I can tell:
I'll try to golf it some more:
printf("%d", v/(v%100?v%10?100:10:1));
试试这个:
printf("% .*d", 4-!(v%100)-!(v%10), v/(v%100?v%10?100:10:1));
printf("%d", v/(v%100?v%10?100:10:1));
Try this:
printf("%.*d", 4-!(v%100)-!(v%10), v/(v%100?v%10?100:10:1));