Design and implement a class called date


Date Class: 
Design and Implement a class called Date that has data members to store month (as a number), day, year, and name of the month. The class should have a three-parameter constructor that allows the data to be set at the time of new Data object instances are created. Default constructor that does not take any parameters should set the default values of 1 (month), 1 (day), 2001 (year). The class should have following three member functions to display date following formats

showDate1() should display the date in 1/1/2001format

showDate2() should display the date in January 1, 2001 format

showDate3() should display the date in 1 January 2001format

Also the class should have method to set the date (setDate()). This method should take month, day, and year as parameters and set the object instance data member values. Then your Date class should work with the Assignment5.cpp given below and produces the following output.

1/1/2001
February 12, 2010
29 August 1986

Assignment5.cpp

#include
using namespace std;
#include "Date.h" 
Int main()

{
Date d1;
Date d2(2, 12, 2010);
d1.showDate1();
d2.showDate2();
d1.setDate(8, 29, 1986);
d1.showDate3();
system("pause");
return 0;

Request for Solution File

Ask an Expert for Answer!!
Dissertation: Design and implement a class called date
Reference No:- TGS055244

Expected delivery within 24 Hours