Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
42 строки
687 B
C++
42 строки
687 B
C++
#include <iostream>
|
|
#include <cmath>
|
|
#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()
|
|
{
|
|
size_t count; // âñå ÷èñëà
|
|
cerr << "Count= ";
|
|
cin >> count;
|
|
|
|
Input in;
|
|
in.numbers.resize(count);
|
|
cerr << "numbers:";
|
|
for (size_t i = 0; i < count; i++)
|
|
{
|
|
cin >> in.numbers[i];
|
|
}
|
|
|
|
cerr << "Bin_count= ";
|
|
cin >> in.bin_count;
|
|
|
|
return in;
|
|
}
|
|
|
|
int main()
|
|
{
|
|
Input in = input_data();
|
|
auto bins=make_histogram(in.numbers,in.bin_count);
|
|
show_histogram_svg(bins); //,in.bin_count);
|
|
return 0;
|
|
}
|