Этот коммит содержится в:
2023-04-23 23:37:05 +03:00
родитель 9a4b65ee9a
Коммит 298322cd64
6 изменённых файлов: 70 добавлений и 7 удалений

Просмотреть файл

@@ -3,6 +3,9 @@
#include <cmath>
#include "histogram.h"
#include "text.h"
#include "svg.h"
#include <string>
#include <conio.h>
using namespace std;
@@ -36,7 +39,6 @@ int main()
{
Input in = input_data();
auto bins = make_histogram(in.numbers, in.bin_count);
show_histogram_text(bins, in.bin_count);
show_histogram_svg(bins);
return 0;
}