本文介绍了额外用printf打印浮动时,前导零?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我希望能够写一时间字符串,看起来像这样: 1:04:02.1小时
用printf结果
当我尝试写这样的事:
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\n", 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\n", 1, 4, 2.123456);
这篇关于额外用printf打印浮动时,前导零?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!