Hunter Liu's Website

2. Week 1 Thursday: If Statements and Conditionals

≪ 1.1. Practise Problems | Table of Contents | 2.1. Practise Problems ≫

Review

Let’s first refresh some things you went over in the first two lectures:

1int number;             // declares a variable with no value 
2double height = 3.3;    // declares "height" with a value of 3.3
3height = 4.4;           // overwrites the contents of "height" with 4.4

Hopefully this all looks familiar.

If statements

Our programs have not been particularly responsive, as in they all do the same thing no matter what our user’s input is. Can we reliably trust our user to always provide sensible inputs? If we ask them for their age, what happens if they give us a negative number? If statements provide us with a way to respond to different scenarios. The general syntax is as follows:

1if( [condition] ) {
2    // code 
3}

The [condition] is an expression that is true or false, and the code within the curly braces runs if the condition is true. Typically, it will be a comparison of numbers, such as x <= 15, y > 0, etc. More on conditional expressions below!

You can add an else block at the end:

1if( [condition] ) {
2    // code 
3} else {
4    // more code 
5}

This time, if the condition is true, the first block of code will run; otherwise, the second block will run. Finally, you can chain multiple conditions together:

1if( [condition 1] ) {
2    // code block 1 
3} else if( [condition 2] ) {
4    // code block 2
5} else if( [condition 3] ) {
6    // code block 3 
7} // etc. 

It will go through the conditions in order, one by one, until it finds a true statement. Then, it will run the corresponding code block before exiting. Here is an example:

 1int x = 73; 
 2if(x >= 90) {
 3    cout << "You got an A" << endl; 
 4} else if(x >= 80) {
 5    cout << "You got a B" << endl; 
 6} else if(x >= 70) {
 7    cout << "You got a C" << endl; 
 8} else if(x >= 60) {
 9    cout << "You got a D" << endl; 
10} else {
11    cout << "See me after class." << endl; 
12}

This snippet of code will output You got a C. It will check the condition x >= 90, which is false. Then, it checks x >= 80, which is also false. It finally checks x >= 70, which is true, and so it runs the following code block. It then skips the rest of the else if/else blocks!

There are several things to remark:

1int x = 50; 
2if(x < 0) 
3    cout << "I love "; 
4    cout << "pie" << endl; 

Conditionals

We have to put conditionals inside the if statements, and these will generally take the form of comparisons between numbers. You can compare integers, floats, and doubles with each other. If a and b are numbers, you can perform the following comparisons:

These should hopefully be self-explanatory.

Sometimes, however, we may have more than one condition that we want to be true, or several conditions of which we want at least one to be true. If p and q are two boolean expressions (i.e., true or false, such as the comparisons above), you can combine them in the following two ways:

Of course, one can string together any number of conditions using a mix of && and ||; however, you should be careful with the order in which they are combined together. This StackOverflow answer provides a great explanation; in short, && is evaluated first in absence of parentheses.