From 38b2905a6f7a515023b2f2022a1990595f2e9f7d Mon Sep 17 00:00:00 2001 From: "Andrew (ShabatovAA)" Date: Thu, 18 Apr 2024 21:01:18 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D1=81=D1=82=D1=80=D1=83=D0=BA=D1=82?= =?UTF-8?q?=D1=83=D1=80=D0=B0=20=D0=B4=D0=BB=D1=8F=20=D0=B2=D1=85=D0=BE?= =?UTF-8?q?=D0=B4=D0=BD=D1=8B=D1=85=20=D0=B4=D0=B0=D0=BD=D0=BD=D1=8B=D1=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/main.cpp b/main.cpp index 3d70f0c..1a33cd2 100644 --- a/main.cpp +++ b/main.cpp @@ -4,6 +4,11 @@ using namespace std; const size_t SCREEN_WIDTH = 80; const size_t MAX_ASTERISK = SCREEN_WIDTH - 3 - 1; +struct Input{ + vector numbers; + size_t bin_count{}; +}; + int main() { size_t number_count;