Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

37 строки
683 B
C++

#include <iostream>
#include <vector>
#include "histogram.h"
#include "text.h"
#include "svg.h"
#include "emptiness.h"
using namespace std;
struct Input
{
vector<double> numbers;
size_t bin_count{};
};
Input
input_data(istream& tin)
{
size_t number_count;
cerr << "Enter number count: ";
tin >> number_count;
Input in;
in.numbers.resize(number_count);
for(int i; i<number_count; i++)
{
tin >> in.numbers[i];
}
cerr << "Enter bin count: ";
tin >> in.bin_count;
return in;
}
int main()
{
Input in = input_data(cin);
auto bins = make_histogram(in.numbers, in.bin_count);
show_histogram_svg(bins);
return 0;
}