C/C++ Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
 
Go Back   Dev Articles Community ForumsProgrammingC/C++ Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
  #1  
Old January 25th, 2005, 09:48 PM
wagnerm wagnerm is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jan 2005
Posts: 1 wagnerm User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 38 m 38 sec
Reputation Power: 0
Smile Please help me I need help converting minutes to hh:mm:ss

Hello, can anyone help me. I can not figure out how to conver
the number of minutes(173.317) into hours, minutes and seconds.
Please help me!!

wagnerm

Reply With Quote
  #2  
Old January 26th, 2005, 02:49 AM
Programmer1199 Programmer1199 is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jan 2005
Posts: 4 Programmer1199 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 33 m 17 sec
Reputation Power: 0
You will want to first Divide the number of minutes by 60 to give u the amount of hours.

173.313/ 60 = 2.88616....

than if you take the decimal and multply it by 60 itll give you the minutes.

.88616 * 60 = 53.317

than take that decimal and multply by another 60 to give the seconds

.317 * 60 = 19 seconds

so The total is 2 hours 53 minutes and 19 seconds.


Something like this may work:

Note: 'numb' is the initial number to be broken down

int hours = static_cast<int>(numb / 60);
int minutes = static_cast<int>(numb - (hours * 60));
int seconds = static_cast<int>((numb-(hours*60) - minutes) * 60);

Reply With Quote
Reply

Viewing: Dev Articles Community ForumsProgrammingC/C++ Help > Please help me I need help converting minutes to hh:mm:ss


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 4 hosted by Hostway
Stay green...Green IT