calculate if year is leap year
if (i%4==0 && i%100!=0 || i%400==0) {
months[2] = 29;
}
else {
month[2] = 28;
}
calculate if year is leap year
if (i%4==0 && i%100!=0 || i%400==0) {
months[2] = 29;
}
else {
month[2] = 28;
}
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;
}
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