Question
Design a class called Date that has integer data members to store month, day, and year. The class should have a three-parameter non-default constructor that
Design a class called Date that has integer data members to store month, day, and year. The class should have a three-parameter non-default constructor that allows the date to be set at the time a new Date object is created. If the user creates a Date object without passing any arguments, the members get the following default values of 1, 1, 2001 (i.e., January 1, 2001). The class should have member functions to print the date in the following formats:
3/15/13
March 15, 2013
Demonstrate the class by writing a program that uses it. Create one object using the default constructor and another object using the non-default constructor. Print the date from both objects using the two different format functions from above. Remember, all data members should be private!!!
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