int count=1; printf("%02d",count); //固定输出两位,不足两位的数字在数字前面添加0
float x=0.02 printf("%.3f\n",x); //输出小数点后三位