From a26e07f2327ef14c0546472c6b61fd61461de90f Mon Sep 17 00:00:00 2001 From: KozlovVV Date: Mon, 7 Oct 2024 00:37:32 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0?= =?UTF-8?q?=D0=BC=D0=BC=D0=B0=20=D1=80=D0=B0=D0=B7=D0=B1=D0=B8=D1=82=D0=B0?= =?UTF-8?q?=20=D0=BD=D0=B0=20=D1=81=D1=82=D1=80=D1=83=D0=BA=D1=82=D1=83?= =?UTF-8?q?=D1=80=D1=8B=20=D0=B8=20=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8?= =?UTF-8?q?=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 94c0f67..9c3cfd3 100644 --- a/main.cpp +++ b/main.cpp @@ -29,7 +29,7 @@ input_data() { } void -find_minmax(const vector numbers, double& min, double& max) { +find_minmax (const vector numbers, double& min, double& max) { min = numbers[0]; max = numbers[0]; for (double x : numbers) {