Valhalla Legends Archive

Programming => General Programming => C/C++ Programming => Topic started by: Coltz on January 17, 2006, 11:17 AM

Title: First Project - Simple Time Converter
Post by: Coltz on January 17, 2006, 11:17 AM
Ok so just a quick question, need a little help on my first project for CSE 231.  Our project is take take input from the use in terms of seconds, and convert that time into minutes, hours, and days.  Seems easy enough for me at first - Use an int variable for seconds to make sure the user doesn't do anything stupid like 1.1 to mess up any conversions, convert that and then use simple division in order to output to the user the minutes, hours, and days.  The problem is one of the requirements for the project is that each output is restricted with 3 decimal points.  As in instead of displaying 3509039430 seconds = .0000329 days ( Yes I know this is not correct, just an example) I'm required to output to the user 0.000 days.  Or 3023902 seconds = 0.012 hours (again not correct, but you get the idea).  I'm brand new to C++... My instructor specified that all the information we would need is included in the first chapter of our text book, yet I am unable to find ANYTHING pertaining to rounding variables off and the works.  I searched the C++ board already and could not find what I was looking for.  Any help as to how I would go about writing this program would be greatly appreciated.
Title: Re: First Project - Simple Time Converter
Post by: Kp on January 17, 2006, 06:25 PM
Well, the good news is that there are a great many jobs in which you'll simply never need floating point.  The bad news is this is so obvious that it feels like cheating to tell you.  Remind me next month and I'll explain it.
Title: Re: First Project - Simple Time Converter
Post by: shout on January 17, 2006, 08:07 PM
* and / are your friends here.
Title: Re: First Project - Simple Time Converter
Post by: Kp on January 17, 2006, 08:33 PM
I would've put them in the other order, since /* is the opener of a comment and */ is the closer of the comment.  Or were you somehow trying to coerce him into using math to solve a mathemtical problem? ;)
Title: Re: First Project - Simple Time Converter
Post by: shout on January 17, 2006, 09:30 PM
Quote from: Kp on January 17, 2006, 08:33 PM
Or were you somehow trying to coerce him into using math to solve a mathemtical problem? ;)

Why would I do something like that!?
Title: Re: First Project - Simple Time Converter
Post by: rabbit on January 17, 2006, 09:48 PM
*, /, %.  Learn to love them.
Title: Re: First Project - Simple Time Converter
Post by: AntiVirus on January 18, 2006, 06:33 PM
Coltz, why are you worring about decimal places when you are using int?  If you are going to use decimal places, use float.

And to do this find the equation for converting seconds into mins. and mins. into hours, and hours into days.  Once you know how to do that, your program should be simple enough. :)
Title: Re: First Project - Simple Time Converter
Post by: MyndFyre on January 18, 2006, 07:29 PM
Quote from: Brandon on January 18, 2006, 06:33 PM
Coltz, why are you worring about decimal places when you are using int?  If you are going to use decimal places, use float.
Maybe the project's specifications say to use decimal places, which would mean that using int is an incorrect plan.
Title: Re: First Project - Simple Time Converter
Post by: Joe[x86] on January 18, 2006, 09:32 PM
int seconds;
cin >> seconds;
int minutes, hours, days;
days = seconds / 60*60*24; seconds -= days*60*60*24;
hours = seconds / 60*60; seconds -= hours*60*60;
minutes = seconds / 60; seconds -= minutes * 60;
cout << days << " days, " << hours << " hours, " << minutes << " minutes, and " << seconds << "seconds." << endl;

I love how int is.. integral, not floating point.
Title: Re: First Project - Simple Time Converter
Post by: AntiVirus on January 18, 2006, 09:58 PM
Quote from: MyndFyre on January 18, 2006, 07:29 PM
Quote from: Brandon on January 18, 2006, 06:33 PM
Coltz, why are you worring about decimal places when you are using int?  If you are going to use decimal places, use float.
Maybe the project's specifications say to use decimal places, which would mean that using int is an incorrect plan.
That was my point. :D
Title: Re: First Project - Simple Time Converter
Post by: K on January 18, 2006, 10:17 PM
Quote from: Joe on January 18, 2006, 09:32 PM
int seconds;
cin >> seconds;
int minutes, hours, days;
days = seconds / 60*60*24; seconds -= days*60*60*24;
hours = seconds / 60*60; seconds -= hours*60*60;
minutes = seconds / 60; seconds -= minutes * 60;
cout << days << " days, " << hours << " hours, " << minutes << " minutes, and " << seconds << "seconds." << endl;

I love how int is.. integral, not floating point.

That's going to give you some really wrong answers.
Title: Re: First Project - Simple Time Converter
Post by: Eric on January 18, 2006, 10:32 PM
I'm sure you were provided with a textbook or at minimum given instruction on how to complete this task.  You should be able to manage with the materials that have been provided to you.
Title: Re: First Project - Simple Time Converter
Post by: Explicit on January 18, 2006, 11:07 PM
Quote from: Lord[nK] on January 18, 2006, 10:32 PM
I'm sure you were provided with a textbook or at minimum given instruction on how to complete this task. You should be able to manage with the materials that have been provided to you.

Is that just talk as a result of your online courses?  :P
Title: Re: First Project - Simple Time Converter
Post by: AntiVirus on January 19, 2006, 04:11 PM
Even so, all he needs is the equations on how to convert, the rest should be realivly simple.  If the teacher gave them the project, then they *should* know how to do it.
Title: Re: First Project - Simple Time Converter
Post by: rabbit on January 19, 2006, 07:59 PM
char *convertSeconds(long time)
{
char *buff;
long data = time;
long days, hours, minutes, seconds;

days = time / 86400;
if(days > 0) time -= days * 86400;

hours = time / 3600;
if(hours > 0) time -= hours * 3600;

minutes = time / 60;
seconds = time % 60;

sprintf(buff, "%i%s, %i%s, %i%s, %i%s",
days, (days != 1) ? "s" : "",
hours, (hours != 1) ? "s" : "",
minutes, (minutes != 1) ? "s" : "",
seconds, (seconds != 1) ? "s" : ""
);

return buff;
}

Shoddy code.  Probably has a bug somewhere.