#ifndef HISTOGRAM_H_INCLUDED #define HISTOGRAM_H_INCLUDED #include void FindMinMax(const std::vector& marks, double& min, double& max); std::vector MakeHistogram(const std::vector& marks, int NCharts); #endif // HISTOGRAM_H_INCLUDED