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打印浮点数时有额外的前导零?
基础教程推荐
- 初始化列表*参数*评估顺序 2021-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- CString 到 char* 2021-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
