本文介绍了printf的怎么办浮动点带前导零的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道该怎么做前导零的X数量,我知道该怎么做小数点X数量。但是,怎么做我做的他们两个?

I know how to do X amount of leading zeros, and I know how to do X amount of decimal points. But, how do I do them both?

我期待有4个前导零到2的小数precision:0000.00。
因此43.4将是0043.40

I am looking to have 4 leading zeros to a decimal precision of 2: 0000.00. Therefore 43.4 would be 0043.40

推荐答案

试试这个的printf (,,的)格式字符串:

Try this printf (C, Perl, PHP) format string:

"%07.2f"

这篇关于printf的怎么办浮动点带前导零的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-13 18:48