Posted: Mon Oct 30, 2006 2:11 pm Post subject: numbers in a line
Hi there, I need to write a program that reads up to 10 numbers per line to be stored in an array.The program calculates and displays the sum of the numbers, the mean (arithmetic average) of the numbers, and the largest and smallest values entered for each line.
Posted: Mon Oct 30, 2006 4:45 pm Post subject: (No subject)
so what's wrong with the output?
bugzpodder
Posted: Mon Oct 30, 2006 4:46 pm Post subject: (No subject)
reset min and max value after each dataset (try after output)
bugzpodder
Posted: Mon Oct 30, 2006 4:48 pm Post subject: (No subject)
also, you probably do not want to limit array of size to 10 (as any input larger than 10 would cause an overflow). Instead, you dont even need an array, as after a value was investigated there is no need to keep it around.
varundesi
Posted: Mon Oct 30, 2006 5:20 pm Post subject: (No subject)
Andy wrote:
so what's wrong with the output?
the min is wrong for line 3,4,5, and max is wrong for line 2,3,4,5.
varundesi
Posted: Mon Oct 30, 2006 5:24 pm Post subject: (No subject)
bugzpodder wrote:
reset min and max value after each dataset (try after output)
Thanks a lot man
that worked
wtd
Posted: Mon Oct 30, 2006 5:39 pm Post subject: (No subject)
I'm going to use this thread as a place to break the problem down, with little concern for the original solution. Understanding how to break a problem down into smaller problems is a more important lesson.
So, one of the tiny little problems is getting all of the numbers from a string. Getting that string (a line from a file) in the first place is an entirely separate problem.
Either way, you now have this ability, and you know nothing is wrong with it. You can focus on other parts of the program. For instance, you'll probably want to write a function that can find the sum of a vector of ints. That'd be another small problem solved.
Why vectors at all?
Because there's no telling how many numbers a line will contain. Using an array in this situation makes little sense.
bugzpodder
Posted: Tue Oct 31, 2006 8:12 am Post subject: (No subject)
I am not a STL guru, but i think this works:
code:
while ( buffer >> temporary_integer)
output.push_back(temporary_integer);
Sponsor Sponsor
varundesi
Posted: Tue Oct 31, 2006 2:48 pm Post subject: (No subject)
Thanks for the info wtd, but i have no clue about STL's, thanks anyway.
wtd
Posted: Tue Oct 31, 2006 3:41 pm Post subject: (No subject)
The STL is the Standard Template Library. It is a huge part of the C++ standard library, and home to many powerful classes and functions, such as the vector class and copy function I used in that example, for instance.
wtd
Posted: Tue Oct 31, 2006 5:35 pm Post subject: (No subject)
Posted: Thu Nov 02, 2006 10:33 pm Post subject: (No subject)
err no.. that's a archive that can be opened with a variety of decompression programs
md
Posted: Thu Nov 02, 2006 11:31 pm Post subject: (No subject)
it's a gzip'd tar archive. It's a standard that's been around for oh, 20 years? Any decent compression program shoudl be able to decompress it for you.
Andy
Posted: Fri Nov 03, 2006 12:08 am Post subject: (No subject)
and fyi, winzip is NOT a decent compression program