leap year algorithm
def isLeapYear (year):
if ((year % 4 == 0) and (year % 100 != 0)) or (year % 400 == 0):
true
else:
false
leap year algorithm
def isLeapYear (year):
if ((year % 4 == 0) and (year % 100 != 0)) or (year % 400 == 0):
true
else:
false
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";
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;
}
leap year
import calendar
def is_leap(year):
return calendar.isleap(year)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us