Question
C++ 3. Day of the Year Modication Modify the DayOfYear class, written in an earlier Programming Challenge, to add a constructor that takes two parameters:
C++
3. Day of the Year Modication
Modify the DayOfYear class, written in an earlier Programming Challenge, to add a
constructor that takes two parameters: a string representing a month and an integer in the
range 0 through 31 representing the day of the month. The constructor should then initialize
the integer member of the class to represent the day specied by the month and day of month
parameters. The constructor should terminate the program with an appropriate error
message if the number entered for a day is outside the range of days for the month given.
Add the following overloaded operators:
++ prex and postx increment operators. These operators should modify the DayOfYear
object so that it represents the next day. If the day is already the end of the year, the
new value of the object will represent the rst day of the year.
-- prex and postx decrement operators. These operators should modify the DayOfYear
object so that it represents the previous day. If the day is already the rst day of the
year, the new value of the object will represent the last day of the year.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started