Programming
Python
R
Java
C
C++
C#
WEB
HTML
CSS
JavaScript
BootStrap4
jQuery
SVG
MORE
Examples1
Python
GO
R
Java
C
C++
C#
Examples2
Python
R
Java
C
C++
C#
HTML
CSS
JavaScript
BootStrap4
jQuery
SVG
Seo Tools
Code Minifier
Code Beautifier
Language Compiler
Misc Tools
File Converter
References
C
C++
Python
Java
PHP
JavaScript
Examples
Python
R
Java
C
C++
C#
HTML
CSS
JavaScript
BootStrap4
jQuery
SVG
Home
About
Contact
JetPack
Multi Themes-->>
Code it ALL
Scroll TOP
C++ Program to Check Leap Year - CodeGK
Δ Cpp Examples
Examples
C++ "Hello, World!" Program
C++ Program to Add Two Numbers
C++ Program to Find Quotient and Remainder
C++ Program to Find Size of char, bool, int, float, double and long
C++ Program to Swap Two Numbers
C++ Program to Check Whether Number is Even or Odd
C++ Program to Check Whether an Alphabet is a Vowel or Consonant
C++ Program to Find Largest Number Among Three Numbers
C++ Program to Find Smallest Number Among Three Numbers
C++ Program to Find All Roots of a Quadratic Equation
C++ Program to Calculate Sum of Natural Numbers
C++ Program to Check Leap Year
C++ Program to Find Factorial
C++ Program to Generate Multiplication Table
C++ Program to Display Fibonacci Series
C++ Program to Find GCD
C++ Program to Find LCM
C++ Program to Reverse a Number
C++ Program to Calculate Power of a Number
C++ Program to Find ASCII Value of a Character
C++ Program to Multiply two Numbers
C++ Program to Check Whether a Number is Palindrome or Not
C++ Program to Check Whether a Number is Prime or Not
C++ Program to Display Factors of a Number
♦ C++ Program to Check Leap Year
♣ Example1: C++ Program to Check Leap Year
Input:
Run CODE
Reload Code
Copy Code
#include
#include
using namespace std; bool checkLeapYear(int year){ bool isLeap=false; // leap year if perfectly visible by 400 if (year % 400 == 0) { printf("%d is a leap year\n", year); isLeap=true; } // not a leap year if visible by 100 // but not divisible by 400 else if (year % 100 == 0) { printf("%d is not a leap year\n", year); isLeap=true; } // leap year if not divisible by 100 // but divisible by 4 else if (year % 4 == 0) { printf("%d is a leap year\n", year); isLeap=true; } // all other years are not leap year else { printf("%d is not a leap year\n", year); } return isLeap; } int main() { int year1=1978; checkLeapYear(year1); int year2=1988; checkLeapYear(year2); int year3=2408; checkLeapYear(year3); return 0; }
Output: