printf("%05d",a); 如果a=10,那么便会输出00010 这代表这如果不够5位便用0填满5位 可以将5变成其他的任意整数(但不要太大了)
#include<cstdio> int main() { printf("%05d",10); return 0; }
自己在理解理解吧!