Сравнить коммиты
Ничего общего в коммитах. '605658942f4a47ae5cf2910cd1ff6232e646de40' и 'c7571aad1c391009a49c3c91a77ba773d9daedcf' имеют совершенно разные истории.
605658942f
...
c7571aad1c
@ -1,43 +0,0 @@
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
#include "histogram.h"
|
||||
#include "svg.h"
|
||||
|
||||
using namespace std;
|
||||
|
||||
struct Input{
|
||||
vector<double> numbers;
|
||||
size_t bin_count{};
|
||||
|
||||
}
|
||||
|
||||
|
||||
Input input_data(){
|
||||
size_t number_count;
|
||||
cerr<<"Enter number count:";
|
||||
cin >> number_count;
|
||||
|
||||
Input in;
|
||||
in.numbers.resize(number_count);
|
||||
|
||||
for(size_t i=0; i<number_count; i++){
|
||||
cin>>in.numbers[i];
|
||||
|
||||
}
|
||||
|
||||
cerr<<"Enter bin count: ";
|
||||
cin>>in.bin_count;
|
||||
return in;
|
||||
}
|
||||
|
||||
|
||||
|
||||
int main(){
|
||||
|
||||
auto in = input_data();
|
||||
auto bins = make_histogram(in.numbers, in.bin_count);
|
||||
show_histogram_svg(bins);
|
||||
|
||||
|
||||
}
|
||||
|
Загрузка…
Ссылка в новой задаче