A Problem Solved: Leap Years
In this lesson, we will use if statements to see whether a given year is a leap year.
We'll cover the following...
Problem statement
Is this year a leap year? Will the year 3000 be a leap year? Let’s write a program to find out.
Pseudocode
The overall logic of the program is not complicated, as you can see from the following pseudocode:
Describe the program’s purpose
Ask the user to type a year
Read the year
Test whether the year is a leap year
Display the results
Let’s tackle ...