Extra leading zeros when printing float using printf?(使用printf打印浮点数时有额外的前导零?)
问题描述
我希望能够使用 printf 编写一个如下所示的时间字符串:1:04:02.1 hours
.
当我尝试写这样的东西时:
I'd like to be able to write a time string that looks like this: 1:04:02.1 hours
using printf.
When I try to write something like this:
printf("%d:%02d:%02.1f hours
", 1, 4, 2.123456);
我明白了:
1:04:2.1 hours
是否可以在浮点格式中添加前导零?
Is it possible to add leading zeros to a float formatting?
推荐答案
使用 %f
格式说明符,2"被视为最小字符数,而不是位数在小数点之前.因此,您必须将其替换为 4 才能获得两位前导数字 + 小数点 + 一位小数.
With the %f
format specifier, the "2" is treated as the minimum number of characters altogether, not the number of digits before the decimal dot. Thus you have to replace it with 4 to get two leading digits + the decimal point + one decimal digit.
printf("%d:%02d:%04.1f hours
", 1, 4, 2.123456);
这篇关于使用printf打印浮点数时有额外的前导零?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用printf打印浮点数时有额外的前导零?


基础教程推荐
- 这个宏可以转换成函数吗? 2022-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 我有静态或动态 boost 库吗? 2021-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 常量变量在标题中不起作用 2021-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01