If I have an array and I need to display how many times the number '12' is created. I'm using a function to go about this. What resources should I look into to find how to exactly tease out this one number and display how many times it is in the array/list? Any help would be greatly appreciated.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Simply create a counter variable, and examine each element in the array in a loop, incrementing the counter variable every time an element is equal to 12. |
|||
|
|
|
You can do it by walking through the array, while keeping a tally. The tally starts at 0, and every time you reach the number you want to track, add one to it. When you're done, the tally contains the number of times the number appeared. Your function definition would probably look something like this:
|
|||||||
|
|
If you have a plain C-array, you have to iterate over all elements in a loop and count yourself with a variable. |
|||
|
|
After this, the variable twelves will contain the number of twelves in the array. |
|||||||||||||||
|
|
Iterate over the array with a loop, incrementing a counter as you go.
|
|||||||||||||||||||
|

