From 891e8ae862b40b3f7fec82e1f277224f0aac6a0c Mon Sep 17 00:00:00 2001 From: NenashevaAV Date: Mon, 19 May 2025 11:35:51 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB?= =?UTF-8?q?=D0=B0=20=D0=BF=D0=B0=D1=80=D0=B0=D0=BC=D0=B5=D1=82=D1=80=20arg?= =?UTF-8?q?c?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/main.cpp b/main.cpp index de7f561..f095032 100644 --- a/main.cpp +++ b/main.cpp @@ -12,10 +12,10 @@ struct Input { size_t bin_count{}; }; -Input -input_data(istream& in, bool prompt) { +Input input_data(istream& in, bool prompt) { if (prompt) { - cerr << "Enter number count, numbers and bin count: ";} + cerr << "Enter number count, numbers and bin count: "; + } size_t number_count; in >> number_count; @@ -32,13 +32,19 @@ input_data(istream& in, bool prompt) { return input; } -int -main() { +int main(int argc, char* argv[]) { + if (argc > 1) { + cout << "argc = " << argc << endl; + for (int i = 0; i < argc; ++i) { + cout << "argv[" << i << "] = " << argv[i] << endl; + } + return 0; + } + 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); - return 0; }