Question: Please create main.cpp, functions. h and functions. cpp. #include using namespace std; bool IsLeapYear(int year) { return (year % 400 == 0 || year %
Please create main.cpp, functions. h and functions. cpp.
#include
using namespace std;
bool IsLeapYear(int year) {
return (year % 400 == 0 || year % 100 ! = 0) &&( year % 4 == 0);
}
int main()
{
int year;
cout << "Enter a year:";
cin >> year;
if(IsLeapYear(year)){
cout << year << "is a leap year" << endl;
}
else {
cout << year << is not a leap year" << endl;
}
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
