C++ Program to Check Leap Year

Checking whether a given year is a leap year is a common problem in programming, often used in applications related to calendars, date calculations, and more. In this article, we will learn to write a C++ Program to Check Leap Year. We will include multiple examples with different implementations and detailed explanations of each, ensuring a thorough understanding of the concept. Let’s get started!

Introduction

A leap year is a year that is divisible by 4, except for end-of-century years, which must be divisible by 400. This means that the year 2000 was a leap year, but the years 1700, 1800, and 1900 were not.

Definition

A year is a leap year if:

  • It is evenly divisible by 4;
  • If it is evenly divisible by 100, it must also be divisible by 400.

Prerequisites

To follow along with this article, you should have:

  • A basic understanding of C++ programming.
  • Familiarity with conditional statements in C++.
  • A C++ compiler to compile and run the programs.

Example Implementations

Solution 1: Using Simple Conditional Statements to Check Leap Year in C++

Explanation

In this solution, we will use simple conditional statements to check whether a year is a leap year. This method is straightforward and easy to understand.

Code

C++
#include <iostream>
using namespace std;

bool isLeapYear(int year) {
    if (year % 4 == 0) {
        if (year % 100 == 0) {
            if (year % 400 == 0)
                return true;
            else
                return false;
        }
        else
            return true;
    }
    else
        return false;
}

int main() {
    int year;
    cout << "Enter a year: ";
    cin >> year;

    if (isLeapYear(year))
        cout << year << " is a leap year." << endl;
    else
        cout << year << " is not a leap year." << endl;

    return 0;
}

Output

C++
Enter a year: 2000
2000 is a leap year.
C++
Enter a year: 1900
1900 is not a leap year.

Solution 2: Using Logical Operators to Check Leap Year

Explanation

In this solution, we will use logical operators to simplify the leap year checking conditions. This approach is more compact and improves readability.

Code

C++
#include <iostream>
using namespace std;

bool isLeapYear(int year) {
    return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);
}

int main() {
    int year;
    cout << "Enter a year: ";
    cin >> year;

    if (isLeapYear(year))
        cout << year << " is a leap year." << endl;
    else
        cout << year << " is not a leap year." << endl;

    return 0;
}

Output

C++
Enter a year: 2000
2000 is a leap year.
C++
Enter a year: 1900
1900 is not a leap year.

Solution 3: Using Function Pointers to Check Leap Year

Explanation

In this implementation, we will use function pointers to check for leap years. This approach demonstrates the flexibility of function pointers in C++.

Code

C++
#include <iostream>
using namespace std;

bool checkLeapYear(int year) {
    return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);
}

int main() {
    int year;
    cout << "Enter a year: ";
    cin >> year;

    bool (*leapYearFunc)(int) = checkLeapYear;

    if (leapYearFunc(year))
        cout << year << " is a leap year." << endl;
    else
        cout << year << " is not a leap year." << endl;

    return 0;
}

Output

C++
Enter a year: 2000
2000 is a leap year.
C++
Enter a year: 1900
1900 is not a leap year.

Conclusion

In this article, we explored three different methods to check whether a given year is a leap year using C++. We used simple conditional statements, logical operators, and function pointers to achieve the desired result. Each method has its own advantages and can be chosen based on the specific requirements and preferences of the programmer