C++: Programming Problem - cin Count Equal

Name __________________________________

(10 points) Write a program which reads a sequence of integers and counts how many times the number 55 occurs. Print the count. For example, with input 55 25 1004 4 -6 55 0 55, the output should be 3 because there were 3 55's in the input stream. Your program should work for any input, not just this example..