Write a C++ program that takes as input an arbitrary number of red blood cell counts in the range 0 to 50 and does two things:
Example: Suppose the user enters the following red blood cell counts:
24.5, 36.8, 25.66, 44.12,48.0, 45.22, 33.9 -1Your output should loook like:
The average blood cell count was 36.8857 The distribution of the red blood cell counts was: healthy: **** anemic: ***
Design you program so that it uses (at least a) function.