From 4813bf8c1356a3b1e1725ae3cf87645fec1fdc6b Mon Sep 17 00:00:00 2001 From: "PARZIVAL (BreganIM)" Date: Mon, 19 May 2025 00:59:37 +0300 Subject: [PATCH] =?UTF-8?q?code:=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D1=8B=20=D0=B2=D1=81=D0=B5=20=D0=BE=D1=88=D0=B8?= =?UTF-8?q?=D0=B1=D0=BA=D0=B8=20=D0=BF=D1=80=D0=B8=20=D0=B4=D0=BE=D0=B1?= =?UTF-8?q?=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D0=B8=20curl?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- laba01upd3.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/laba01upd3.cpp b/laba01upd3.cpp index 2abf415..36a2b27 100644 --- a/laba01upd3.cpp +++ b/laba01upd3.cpp @@ -5,6 +5,8 @@ #include "text.h" #include +#include + using namespace std; struct Input { @@ -34,10 +36,15 @@ Input input_data(istream& in, bool prompt) { int main() { + curl_global_init(CURL_GLOBAL_ALL); + + + auto in = input_data(cin, true); auto bins = make_histogram(in.numbers, in.bin_count); show_histogram_svg(bins); show_histogram_text(bins); + return 0; }