code:сохранение изменений

Этот коммит содержится в:
RybakovaSA
2025-05-01 19:25:18 +03:00
родитель 35dce5bd51
Коммит 6ae5158025

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

@@ -2,7 +2,7 @@
#include <iostream>
#include "histogram.h"
#include "text.h"
#include "svg.h"
using namespace std;
struct Input {
@@ -32,7 +32,7 @@ Input input_data() {
int main() {
auto in = input_data();
auto bins = make_histogram(in.numbers, in.bin_count);
show_histogram_text(bins);
show_histogram_svg(bins);
return 0;
}