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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!