I need to print something out every 50 seconds. I figured I would calculate that 50 seconds had passed by subtracting my current time from the previous time.

Let's say I know the hour, minute and seconds of the previous and current time, how do I calculate how much time had passed in seconds?

link|improve this question
3  
Why don't you convert everything in seconds first and then compare them? – ja72 Nov 20 '11 at 6:30
Which programming language do you use? – Juhana Nov 20 '11 at 8:48
feedback

closed as not a real question by Ken White, WrightsCS, Mr.Wizard, Brad Larson, C. A. McCann Dec 14 '11 at 2:37

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

3 Answers

You use one of the calls provided by the OS for that. don't calculate it on your own. Depends on the Os and programming language.

link|improve this answer
I'm using C, so I can get the values for the time, I just needed to calculate the difference. – Lexy Yang Nov 20 '11 at 6:47
feedback

( (Cur_hour - Prev_hour)*3600) + ((Cur_min - Prev_min)*60) + (cur_sec - Prev_sec)

Hopefully this will do.

link|improve this answer
What happens when the day changes? (hour == 0 and prev == 23). what happens when the month changes? year? better to let the OS handle this. – OSH Nov 20 '11 at 6:30
@OrenS. I agree thats far better than this, but If you really want, you can code yourself by refining the above code. :) – Sanjay Nov 20 '11 at 6:38
feedback

Thanks for the answers. Here's what I did.

I used a modified version of the answer above:

( (Cur_hour - Prev_hour)*3600) + ((Cur_min - Prev_min)*60) + (cur_sec - Prev_sec).

I was using C, so I calculated the current time, (cur_hour *3600)+(cur_min*60)+(cur_sec) - (prev_hour * 3600) + (prev_min*60)+(prev_sec).

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.