Convert seconds to hours, minutes, seconds
#2

Don't know what variables you're using but I'll go with totalSeconds, hours, minutes and seconds:

pawn Код:
new temp, hours, minutes, seconds;

temp = totalSeconds % 3600;

hours = (totalSeconds - temp) / 3600;
minutes = (temp - (temp % 60)) / 60;
seconds = temp % 60;
Reply


Messages In This Thread
Convert seconds to hours, minutes, seconds - by kurta999 - 25.11.2014, 22:03
Re: Convert seconds to hours, minutes, seconds - by AnthonyTimmers - 25.11.2014, 22:31
Re: Convert seconds to hours, minutes, seconds - by Banana_Ghost - 26.11.2014, 03:29
Re: Convert seconds to hours, minutes, seconds - by M4D - 26.11.2014, 04:43

Forum Jump:


Users browsing this thread: 3 Guest(s)