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

40 строки
814 B
C++

#include <iostream>
#include <vector>
#include "histogram.h"
#include "text.h"
#include "svg.h"
using namespace std;
struct Input{
vector<double> numbers;
size_t bin_count{};
};
Input
input_data(istream& in, bool prompt=false)
{
Input inn;
size_t number_count;
if (prompt){
cerr << "Enter count, numbers and bin_count\n";
}
in >> number_count;
inn.numbers.resize(number_count);
vector<double> numbers(number_count);
for (size_t i=0; i< number_count; i++) {
in >> inn.numbers[i];
}
in >> inn.bin_count;
return inn;
}
#include <curl/curl.h>
int main()
{
curl_global_init(CURL_GLOBAL_ALL);
size_t max_count;
auto inn = input_data(cin, true);
auto bins = make_histogram(inn.numbers, inn.bin_count);
show_histogram_svg(bins);
}