| The C++Course provides a general introduction to programming in C++. It is based on A.B. Downey's book, How to Think Like a Computer Scientist. Click here for details. |
|

Home Conditionals and recursion Nested Conditionals |
||
| See also: Chained conditionals, Conditional Execution | ||
|
||
Nested Conditionals
cout << "x is zero" << endl; } else { if (x > 0) { cout << "x is positive" << endl; } else { cout << "x is negative" << endl; } } There is now an outer conditional that contains two branches. The first branch contains a simple output statement, but the second branch contains another if statement, which has two branches of its own. Fortunately, those two branches are both output statements, although they could have been conditional statements as well. Notice again that indentation helps make the structure apparent, but nevertheless, nested conditionals get difficult to read very quickly. In general, it is a good idea to avoid them when you can. On the other hand, this kind of nested structure is common, and we will see it again, so you better get used to it.
|
||
Home Conditionals and recursion Nested Conditionals |
||