Course Content
Introduction to C++
if...else
The if...else
construct branches your program and handles different "scenarios" of its outcome.
if...else
consists of two parts: condition and consequences.
For example:
main.cpp
Here, we use the 2-lines comment.
There is also a handling of the "opposite" case using else
:
main.cpp
There can be other if...else
inside the if...else
:
main.cpp
You can also use the else if
construct:
main.cpp
What will the program output?
Select the correct answer
Section 4.
Chapter 1