C++ Program to Check whether a year is Leap year or not

By | 24.12.2016

Check whether a year is Leap year or not


Write a C++ Program to Check whether a year is Leap year or not. Here’s simple Program to Check whether a year is Leap year or not in C++ Programming Language.


Here is source code of the C++ Program to Check whether a year is Leap year or not. The C++ program is successfully compiled and run(on Codeblocks) on a Windows system. The program output is also shown in below.


SOURCE CODE : :


/*  C++ Program to Check whether a year is Leap year or not  */

#include<iostream>
using namespace std;

int main()
{
    int year;

    cout<<"Enter any Year (XXXX) :: ";
    cin>>year;

    if(year%100==0)
    {
        if(year%400==0)
        {
           cout<<"\nThe Entered Year [ "<<year<<" ] is a Leap Year.\n";
        }

    }
    else
    {
        if(year%4==0)
        {
            cout<<"\nThe Entered Year [ "<<year<<" ] is a Leap Year.\n";
        }
        else
        {
            cout<<"\nThe Entered Year [ "<<year<<" ] is NOT a Leap Year.\n";
        }

    }

   return 0;
}

Output : :


/*  C++ Program to Check whether a year is Leap year or not  */

Enter any Year (XXXX) :: 2012

The Entered Year [ 2012 ] is a Leap Year.

Process returned 0

Above is the source code for C++ Program to Check whether a year is Leap year or not which is successfully compiled and run on Windows System.The Output of the program is shown above .

If you found any error or any queries related to the above program or any questions or reviews , you wanna to ask from us ,you may Contact Us through our contact Page or you can also comment below in the comment section.We will try our best to reach up to you in short interval.


Thanks for reading the post….

4.8 4 votes
Article Rating
Category: Basic Programs C++ Programming Tags:

About Tunde A

My name is Tunde Ajetomobi, a Tech Enthusiast and Growth Hacker. I enjoy creating helpful content that solves problem across different topics. Codezclub is my way of helping young aspiring programmers and students to hone their skills and find solutions on fundamental programming languages.

Subscribe
Notify of
guest

1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
TREX

If 300 is the value of the year then this program will not give any output.