9 строки
189 B
C++
9 строки
189 B
C++
#ifndef HISTOGRAM_H_INCLUDED
|
|
#define HISTOGRAM_H_INCLUDED
|
|
|
|
#include <vector>
|
|
|
|
void
|
|
find_minmax(const std::vector<double>& numbers, double& min, double& max);
|
|
|
|
#endif // HISTOGRAM_H_INCLUDED
|