Answers for "how to find a leap year"

5

leap year algorithm

def isLeapYear (year):
    if ((year % 4 == 0) and (year % 100 != 0)) or (year % 400 == 0):
		true
    else:
    	false
Posted by: Guest on February-18-2021
1

Check Leap Year

#include <iostream>
using namespace std;

int main() {
    int year;
    cout << "Enter a year: ";
    cin >> year;
    if (year % 4 == 0) {
        if (year % 100 == 0) {
            (year % 400 == 0) ?
            cout << year << " is a leap year." :
            cout << year << " is not a leap year.";
        }
        else
            cout << year << " is a leap year.";
    }
    else
        cout << year << " is not a leap year.";
    return 0;
}
Posted by: Guest on May-03-2021
0

calculate if year is leap year

if (i%4==0 && i%100!=0 || i%400==0) {
months[2] = 29;
}
else {
month[2] = 28;
}
Posted by: Guest on August-06-2021
1

leap year algorithm

if year % 4 == 0:
  if year % 100 == 0:
    if year % 400 == 0:
      print("leap year")
    else:
      print("not a leap year")
  else:
    print("leap year")
else:
  print("not a leap year")
Posted by: Guest on April-30-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 "how to find a leap year"

Python Answers by Framework

Browse Popular Code Answers by Language