1
0

Formatting.

This commit is contained in:
Captain ALM 2022-10-14 12:08:17 +01:00
parent 18c5f972c2
commit c89e5b4e6c
Signed by: alfred
GPG Key ID: 4E4ADD02609997B1

View File

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