Answers for "Given the year number. You need to check if this year is a leap year. If it is, print LEAP, otherwise print COMMON."

C++
0

Check if a year is a leap year

if (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0))
cout<<year<<" is a leap year";
else
cout<<year<<" is not a leap year";
Posted by: Guest on August-21-2021
-1

Check if a year is leap year

#include<iostream>
using namespace std;
int main() {
   int year = 2016;
   if (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0))
   cout<<year<<" is a leap year";
   else
   cout<<year<<" is not a leap year";
   return 0;
}
Posted by: Guest on August-21-2021

Code answers related to "Given the year number. You need to check if this year is a leap year. If it is, print LEAP, otherwise print COMMON."

Browse Popular Code Answers by Language