用于 C 编程。我如何让数字显示为 00、01、02、03,而不是 0、1、2、3。我只需要在数字前加上 0,直到 10。
我知道当你做小数时你可以做“%.2f”等,但是对于整数呢?
这是我正在使用的......**
printf("Please enter the hours: ");
scanf ("%d",&hour);
printf("Please enter the minutes: ");
scanf ("%d",&minute);
printf("Please enter the seconds: ");
scanf ("%d",&second);
printf("%d : %d : %d\n", hour, minute, second);
}
我需要将数字显示为 00 : 00 : 00
??