Question: Hello I would like to check if the code follows all the requirements. Thanks. Date.h and testDate.cpp Design a class called Date. The Date class
Hello I would like to check if the code follows all the requirements. Thanks.
Date.h and testDate.cpp
Design a class called Date. The Date class should store a date in three integers: month, day, and year. There should be member functions to print the date in the different forms supported by the member methods. Here is the set of testing that you should include in the main application:
// using the overloaded constructor. Date today(12, 25, 2012); // Show the date in form #1. today.showDate1(); // Store a new month, day, and year // in the object. today.setMonth(8); today.setDay(16); today.setYear(2012); // Show the date in form #2. today.showDate2(); // Show the date in form #3. today.showDate3(); // Test invalid date. Date someday(12, 32, 2012);
Demonstrate the class by writing a complete program implementing it. Input Validation: Do not accept values for the day greater than 31 or less than 1. Do not accept values for the month greater than 12 or less than 1.
Date.h
#include testDate.cpp #include "Date.h" #include 
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
