Hunter Liu's Website

1. Week 1 Tuesday: Input/Output, Variables, and Errors

Table of Contents | 1.1. Practise Problems ≫

The following is a minimal program in C++ that prints the sentence “Hello world!” to the console:

1#include <iostream> 
2
3using namespace std; 
4
5int main() {
6    cout << "Hello world!" << endl; 
7
8    return 0; 
9}

The numbers to the left are the line numbers and are not part of the code; they give us references to describe the code. Removing any one of the (non-empty) lines of this program will cause your compiler to complain. Let’s talk about what each line of code does, in no particular order.

Common Mistake 1. Forgetting an include

The C++ language only comes with a handful of keywords (such as int) and functions (such an main) baked into the language. If you want to use string, you must use #include <string>, and if you want to use mathematical functions such as pow, you must use #include <cmath> to do so.

Common Mistake 2. Forgetting semicolons

Notice that lines 3, 6, and 8 ended with a semicolon. Much like how English sentences must end with periods to be grammatically correct, most C++ "statements" must end with a semicolon. #include directives are an exception, and the main function does not need a semicolon. However, printing, declaring variables, arithmetic statements, and reading input (see below) will always be followed by a semicolon.

If we want to make our programs more interactive, we may request the user for input. The following snippet (part of a program) reads a user’s birth year, then computes their age at the end of 2023, and finally outputs this to the screen.

 1// prompt user for birth year 
 2cout << "Which year were you born?" << endl; 
 3
 4// read and store user's input 
 5int birth_year; 
 6cin >> birth_year; 
 7
 8// compute their age by subtracting from 2023 
 9int age = 2023 - birth_year; 
10
11// print result to screen 
12cout << "You will be " << age << " at the end of 2023." << endl; 

Here is a sample of how the code should run:

OUTPUT: Which year were you born? 
INPUT:  1947
OUTPUT: You will be 76 at the end of 2023.

A few remarks about this:

  1. Comment your code liberally. Although this example is contrived and rather simple, we will later encounter far more complicated algorithms wherein the code is not self-explanatory. It may make sense in your head now, but you will find that months later, you will need comments to make sense of your code. Your colleagues also cannot read your mind.
  2. Choose good variable names. We will discuss exceptions to this rule later, but it is imperative that the variable names give some clue to their purpose, particularly in more complex programs.
  3. Notice the “extra” spaces on line 12. The program will output exactly every character you type. It’s common to type "You will be" and "at the end of 2023." without those additional spaces, but this would produce the output You will be76at the end of 2023. instead.

Common Mistake 3. Forgetting to declare a variable

Lines 5 and 9 are variable declarations; they are where birth_year and age are referenced for the first time. The type must be specified to declare a variable. A common source of error is when you use a variable you haven't declared.

Finally, we should note that the user has complete freedom to input whatever they want:

OUTPUT: Which year were you born? 
INPUT:  Nineteen Eighty-four
OUTPUT: You will be 2023 at the end of 2023.

We may except them to input an integer, but our confused friend here entered a string, causing an unexpected age to be printed. This causes something called undefined behaviour — the output varies from computer to computer, and even from user to user, even if the exact same input is used. Handling unexpected input is beyond the scope of this lesson, but it highlights the next common source of error.

Common Mistake 4. Poor choice of variable type

When reading input, carefully consider the type of variable you would like to store it in. Is your input a whole number? A string of letters? A decimal number? Even if the variable type doesn't match the input, you will still be able to run the program, and the undefined behaviour identified above can cause hard-to-find bugs.

Finally, to tie everything off, let’s delineate between several types of errors you’ll likely encounter throughout this course.

For this class, we’ll focus on identifying and correcting build errors by reading the error messages produced by the compiler. This is a critical skill that’s used in projects of every size.