Wite the definitions of the member functions of


1. Design theclasscalendarTypeso that, given the month and the year, we can print the calendar for that month. To print a monthly calendar, you must know the first day of the month and the number of days in that month. Thus, you must store the first day of the month, which is of the formdayType, and the month and the year of the calendar. Clearly, the month and the year can be stored in an object of the formextDateTypeby setting the day component of the date to1and the month and year as specified by the user. Thus, theclasscalendarType has two member variables: an object of the typedayTypeand an object of the typeextDateType.

Design theclasscalendarTypeso that the program can print a calendar for any month starting January 1, 1500. Note that the day for January 1 of the year 1500 is a Monday. To calculate the first day of a month, you can add the appropriate days to Monday of January 1, 1500.

For theclasscalendarType, include the following operations:

Determine the first day of the month for which the calendar will be printed. Call this operationfirst DayOfMonth.

Set the month.

Set the year.

Return the month.

Return the year.

Print the calendar for the particular month.

· Add the appropriate constructors to initialize the member variables

2.Write the definitions of the member functions of theclasscalendarType(designed in previous Programming Exercise ) to implement the operations of theclasscalendarType

Write a test program to print the calendar for either a particular monthor a particular year. For example, the calendar for September 2013 is:

Request for Solution File

Ask an Expert for Answer!!
Biology: Wite the definitions of the member functions of
Reference No:- TGS01461037

Expected delivery within 24 Hours