8.2 — If statements and blocks
The first category of control flow statements we’ll talk about is conditional statements. A is a statement that specifies whether some associated statement(s) should be executed or not. C++ supports two basic kinds of conditionals: if statements (which we introduced in lesson , and will talk about further here) and …