in C++

 

In C++

Create a class named SchoolYear.

Include appropriate private data members.

Include a default constructor which sets the start date of school to September 1, 2019.

Include a constructor which allows the user to set the start date of school.

Include the additional functions in your class which are necessary.

Write a main function that tests all of your functions.

Add the following to the SchoolYear class which you created in chapter 7.

Include an overloaded operator which allows two objects of the SchoolYear class to be compared to see if they are equal.

Also include an overloaded operator to subtract one object from another object.

Write the definitions for both overloaded operators.

Include the class in a main function and test the two new overloaded operators.