Instructions In this chapter, the class dateType was designed to implement the date in a program, but the member function setDate and the constructor do not check whether the date is valid before storing the date in the member variables. Rewrite the definitions of the function setDate and the constructor so that the values for the month, day, and year are checked before storing the date into the member variables. Add a member function, isLeapYear. to check whether a year is a leap year. Moreover, write a test program to test your class.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Question

C++ programming

Instructions
In this chapter, the class dateType was designed to implement the date in a program, but the
member function setDate and the constructor do not check whether the date is valid before
storing the date in the member variables. Rewrite the definitions of the function set Date and the
constructor so that the values for the month, day, and year are checked before storing the date
into the member variables. Add a member function, isLeap Year, to check whether a year is a
leap year. Moreover, write a test program to test your class.
Input should be format month day year with each separated by a space. Output should
resemble the following:
Date #: month-day-year
An example of the program is shown below:
Date 1: 3-15-2008
this is a leap year
If the year is a leap year, print the date and a message indicating it is a leap year, otherwise print a
message indicating that it is not a leap year.
The header file for the class dateType has been provided for you.
Transcribed Image Text:Instructions In this chapter, the class dateType was designed to implement the date in a program, but the member function setDate and the constructor do not check whether the date is valid before storing the date in the member variables. Rewrite the definitions of the function set Date and the constructor so that the values for the month, day, and year are checked before storing the date into the member variables. Add a member function, isLeap Year, to check whether a year is a leap year. Moreover, write a test program to test your class. Input should be format month day year with each separated by a space. Output should resemble the following: Date #: month-day-year An example of the program is shown below: Date 1: 3-15-2008 this is a leap year If the year is a leap year, print the date and a message indicating it is a leap year, otherwise print a message indicating that it is not a leap year. The header file for the class dateType has been provided for you.
1 #ifndef date_H
2 #define date_H
3
4 class dateType
5 €
6 public:
7
8
9
1
3
4
5
6
7
_8
9
0
21
22
23
24
25
26
27
28
29
10
31
12
13
34
15
16
37
38
39
13
14
void setDate(int month, int day, int year);
//Function to set the date.
5 };
//The member variables dMonth, dDay, and dYear are set
//according to the parameters
//Postcondition: dMonth= month; dDay = day;
dYear = year
//
int getDay() const;
//Function to return the day.
//Postcondition: The value of dDay is returned.
int getMonth() const;
//Function to return the month.
//Postcondition: The value of dMonth is returned.
int getYear() const;
//Function to return the year.
//Postcondition: The value of dYear is returned.
void printDate() const;
//Function to output the date in the form mm-dd-yyyy.
bool isLeap Year();
//Function to determine whether the year is a leap year.
dateType(int month = 1, int day = 1, int year = 1900);
//Constructor to set the date
10
1 private:
12
16
17 #endif
//The member variables dMonth, dDay, and dYear are set
//according to the parameters
//Postcondition: dMonth = month; dDay = day;
dYear = year
//
//If no values are specified, the default values are
//used to initialize the member variables.
int dMonth;
int dDay;
int dYear;
//variable to store the month
//variable to store the day.
//variable to store the year
Transcribed Image Text:1 #ifndef date_H 2 #define date_H 3 4 class dateType 5 € 6 public: 7 8 9 1 3 4 5 6 7 _8 9 0 21 22 23 24 25 26 27 28 29 10 31 12 13 34 15 16 37 38 39 13 14 void setDate(int month, int day, int year); //Function to set the date. 5 }; //The member variables dMonth, dDay, and dYear are set //according to the parameters //Postcondition: dMonth= month; dDay = day; dYear = year // int getDay() const; //Function to return the day. //Postcondition: The value of dDay is returned. int getMonth() const; //Function to return the month. //Postcondition: The value of dMonth is returned. int getYear() const; //Function to return the year. //Postcondition: The value of dYear is returned. void printDate() const; //Function to output the date in the form mm-dd-yyyy. bool isLeap Year(); //Function to determine whether the year is a leap year. dateType(int month = 1, int day = 1, int year = 1900); //Constructor to set the date 10 1 private: 12 16 17 #endif //The member variables dMonth, dDay, and dYear are set //according to the parameters //Postcondition: dMonth = month; dDay = day; dYear = year // //If no values are specified, the default values are //used to initialize the member variables. int dMonth; int dDay; int dYear; //variable to store the month //variable to store the day. //variable to store the year
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Reference Types in Function
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education