No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
If your learning C++ for professional uses,try this book: [URL="http://www.amazon.com/Starting-Out-Control-Structures-through/dp/0321545885"]http://www.amazon.com/Starting-Out-Control-Structures-through/dp/0321545885[/URL] I'm saying professional because this book is pretty expensive but covers everything from variable type to object oriented.
Ive look at your code and theres a bunch of error. For your Linker Error, put the prototype of setInt before you use the function as in youre constructor. Basically youre calling a function that youre compiler doesnt know about it.
I found some of your bug. First of all you mist a set of parenthesis where you calculate the median for even number. 2. This line is wrong [CODE]x = movie[stdSurveyed];[/CODE] Youre accessing an element of youre array that doesn't exist. Let's say you enter 5 for the number of …
The End.
Cool_Breezey