3.5. SummaryΒΆ
Like Python C++ also supports the
if-else
conditional statements, and they behave the same way as they do in a Python program.Unlike Python, C++ does not support the use of the
elif
statement. However, you can get the functionality of anelif
statement by nestingif
andelse
statements in C++.C++ also supports a
switch
statement that acts something like the elif statement of Python under certain conditions.C++ supports the use of Boolean expressions in
if-else
statements.
You have attempted of activities on this page