code: сделан 6ый пункт(svg)

Этот коммит содержится в:
2023-05-22 01:33:08 +04:00
родитель e3292458a0
Коммит 460e47151f
2 изменённых файлов: 4 добавлений и 1 удалений

2
.gitignore поставляемый
Просмотреть файл

@@ -1,2 +1,4 @@
/bin /bin
/obj /obj
/lab03.depend
/unittest.depend

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

@@ -3,6 +3,7 @@
#include <conio.h> #include <conio.h>
#include "histogram.h" #include "histogram.h"
#include "text.h" #include "text.h"
#include "swg.h"
using namespace std; using namespace std;
@@ -33,7 +34,7 @@ int main()
{ {
auto in = input_data(); auto in = input_data();
auto bins = make_histogram(in.numbers, in.bin_count); auto bins = make_histogram(in.numbers, in.bin_count);
show_histogram_text(bins, in.bin_count); show_histogram_svg(bins);
getch(); getch();
return 0; return 0;
} }