From 2ee4d858c6290335ada5702e99861f4cecc6fd09 Mon Sep 17 00:00:00 2001 From: OvsiannikovRS Date: Sun, 25 May 2025 22:16:00 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BA=D0=BE=D0=BC=D0=BC=D0=B8=D1=82=20=D0=B2?= =?UTF-8?q?=D1=81=D0=B5=D0=B3=D0=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- LR3/.gitignore | 2 ++ LR3/LR3.cbp | 9 +++++++++ LR3/histogram.cpp | 1 + LR3/histogram.h | 3 ++- LR3/text.cpp | 1 + 5 files changed, 15 insertions(+), 1 deletion(-) diff --git a/LR3/.gitignore b/LR3/.gitignore index 4c7473d..b6aa39b 100644 --- a/LR3/.gitignore +++ b/LR3/.gitignore @@ -1,2 +1,4 @@ /bin /obj +/LR3.depend +/LR3.layout diff --git a/LR3/LR3.cbp b/LR3/LR3.cbp index 919a8d5..ccf7e89 100644 --- a/LR3/LR3.cbp +++ b/LR3/LR3.cbp @@ -32,7 +32,16 @@ + + + + + + + diff --git a/LR3/histogram.cpp b/LR3/histogram.cpp index 0930495..b627dc7 100644 --- a/LR3/histogram.cpp +++ b/LR3/histogram.cpp @@ -1,4 +1,5 @@ #include "histogram.h" +#include using namespace std; diff --git a/LR3/histogram.h b/LR3/histogram.h index f1dd6c6..b47370d 100644 --- a/LR3/histogram.h +++ b/LR3/histogram.h @@ -1,9 +1,10 @@ #ifndef HISTOGRAM_H_INCLUDED #define HISTOGRAM_H_INCLUDED + #include std::vector -make_histogram(std::vector numbers, size_t bin_count); +make_histogram(std::vector numbers, int bin_count); diff --git a/LR3/text.cpp b/LR3/text.cpp index 9a2b870..e741dfc 100644 --- a/LR3/text.cpp +++ b/LR3/text.cpp @@ -1,3 +1,4 @@ +#include #include "text.h" using namespace std;