From c89e5b4e6c228daebfa691a0ca8cfb1777710edd Mon Sep 17 00:00:00 2001 From: Captain ALM Date: Fri, 14 Oct 2022 12:08:17 +0100 Subject: [PATCH] Formatting. --- main.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/main.cpp b/main.cpp index 5cb069b..2d16d8a 100644 --- a/main.cpp +++ b/main.cpp @@ -15,9 +15,12 @@ int main() cin >> guess; while (guess != secret) { - if (guess > secret) { + if (guess > secret) + { cout << "Number too big ; "; - } else { + } + else + { cout << "Number too small ; "; } gcount++;