From 7649fcaf7e24fc6af99081f37a068ca183369cd1 Mon Sep 17 00:00:00 2001 From: "Bob (YershovaVA)" Date: Sun, 6 Apr 2025 16:16:46 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D0=B7=D0=B0=D0=B3=D0=BE=D1=82=D0=BE?= =?UTF-8?q?=D0=B2=D0=BA=D0=B0=20=D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC?= =?UTF-8?q?=D0=BC=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + main.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index aecc882..b6d9cb0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /bin /obj /project.depend +/project.layout diff --git a/main.cpp b/main.cpp index 2e2b053..0ab1b1f 100644 --- a/main.cpp +++ b/main.cpp @@ -11,6 +11,6 @@ int main() cout << "A - B = " << a - b << '\n'; cout << "A * B = " << a * b << '\n'; cout << "A / B = " << a / b << '\n'; - cout << "Max:" << max(a, b) << '\n'; + cout << "Min:" << min(a, b) << '\n'; return 0; }