20.02.2010, 14:52
Quote:
Originally Posted by BlackBank3
Код:
if (minute <= 9) { if (second <= 9) { format(string,25,"%d:0%d:0%d", hour, minute, second); } else { format(string,25,"%d:0%d:%d",hour,minute, second); } } else { if (second <= 9) { format(string,25,"%d:%d:0%d", hour, minute, second); } else { format(string,25,"%d:%d:%d",hour,minute, second); } } You can use for that: format(string,25,"%02d:%02d:%02d", hour, minute, second); |