Lesson 14: if / else / else if
Now we turn a condition into a decision. In C#: if (condition) { ... } runs the block only if the condition is true. else { ... } runs when it's false, and else if (another) checks a further option. Note the C# syntax: the condition is in round parentheses ( ), and the body is in curly braces { } —