From cdfc5eacc178363c6f0116e103d1f037c59eb8f3 Mon Sep 17 00:00:00 2001 From: Nataliia Brown Date: Tue, 16 Jan 2024 23:27:40 -0800 Subject: Final commit --- InClassExercise3/Project1/IN-class.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'InClassExercise3/Project1/IN-class.cpp') diff --git a/InClassExercise3/Project1/IN-class.cpp b/InClassExercise3/Project1/IN-class.cpp index d2a1178..1cfc1c4 100644 --- a/InClassExercise3/Project1/IN-class.cpp +++ b/InClassExercise3/Project1/IN-class.cpp @@ -26,11 +26,11 @@ int main() { cout << "Your number is positive\n"; } - if (i < 0) + else if (i < 0) { cout << "Your number is negative\n"; } - else + else { cout << "Your number is zero.\n"; } -- cgit v1.2.3