(一) printf格式输出数字,位数不够前面补0,可用于输出编号
printf格式输出:%[flags][width][.perc][F|N|h|l]type
用到了flags中的 0 (注意是零不是欧) ,其百科描述为:将输出的前面补上0,直到占满指定列宽为止(不可以搭配使用-)
width 即表示需要输出的位数。
<strong> int a = 4;
printf("%05d",a);</strong>
输出:00004
也可以用 * 代替位数,在后面的参数列表中用变量控制输出位数;
<strong> int a = 4;
int n = 3;
printf("%0*d",n,a);</strong>
输出:004
-------------------------------------------转自shelockid的ChinaUnix博客