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
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