943,544 Members | Top Members by Rank

Ad:
  • C++ Discussion Thread
  • Unsolved
  • Views: 464
  • C++ RSS
Nov 19th, 2008
0

Array Algorithm

Expand Post »
I'm really not understanding what's going on with the array in this. Here's the question.

The following code totals the values in each of the two arrays. Will the code print the correct total for both arrays?

C++ Syntax (Toggle Plain Text)
  1.  
  2. int total = 0;
  3. int count;
  4.  
  5. for (count = 0; count <= 25; count++)
  6. total += array1[count];
  7. cout << "The total is " << total << endl;
  8.  
  9. for (count = 0; count <= 25; count++)
  10. total += array2[count];
  11. cout << "The total is " << total << endl;

I'm not understanding this at all. Both arrays hold 25 integer elements but they aren't equal to anything, so im just lost here... or maybe it's really simple and I'm thinking too hard about it...
Similar Threads
Reputation Points: 10
Solved Threads: 0
Newbie Poster
Foe89 is offline Offline
22 posts
since Oct 2008
Nov 19th, 2008
0

Re: Array Algorithm

If both array1 and array2 contain 25 elements then you should write your for loops
C++ Syntax (Toggle Plain Text)
  1. for (count = 0; count < 25; count++)
as arrays of n elements are indexed from 0 to n-1.

Moreover, the second cout will print the sum of all the elements of the second array plus the sum of all the elements of the first array, as long as you don't reset your total variable between the for loops.

EDIT: What do you mean with "they aren't equal to anything" ? Please clarify this.
Last edited by mrboolf; Nov 19th, 2008 at 5:55 pm.
Reputation Points: 134
Solved Threads: 18
Junior Poster
mrboolf is offline Offline
182 posts
since Jun 2008
Nov 19th, 2008
0

Re: Array Algorithm

Leave out the equal sign in <= !
Else you are counting from 0 to 25 inclusive, which is 26, not 25.
Reputation Points: 2023
Solved Threads: 644
Senior Poster
ddanbe is offline Offline
3,735 posts
since Oct 2008
Nov 19th, 2008
0

Re: Array Algorithm

Don't know what I was thinking there. I changed it to just greater than and then inbetween the two for loop I made total = 0 again. Both arrays outputted -20 so that seems to be working properly. So by not initializing total to = 0 again after the first array is finished will cause total to equal whatever it was in the first output which would be -40 which I checked and so the counter in the for loop must be written as < and not <= because the element starts at 0? I'm going to look in my book about the indexing
Reputation Points: 10
Solved Threads: 0
Newbie Poster
Foe89 is offline Offline
22 posts
since Oct 2008
Nov 19th, 2008
0

Re: Array Algorithm

Don't worry, there are many people on this globe(including me) that have made this mistake. Join the club!
Last edited by ddanbe; Nov 19th, 2008 at 6:21 pm.
Reputation Points: 2023
Solved Threads: 644
Senior Poster
ddanbe is offline Offline
3,735 posts
since Oct 2008

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in C++ Forum Timeline: .h source file acting up
Next Thread in C++ Forum Timeline: Problem with memory allocation





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC