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++;