Help me with C++ please: 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. 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 There are 3 tabs: dateType.h, dateTypelmp.cpp, main.cpp dateType.h: #ifndef date_H  #define date_H   class dateType { public:     void setDate(int month, int day, int year);       //Function to set the date.       //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 isLeapYear();       //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       //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. private:     int dMonth;      //variable to store the month     int dDay;        //variable to store the day     int dYear;       //variable to store the year }; #endif

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
icon
Related questions
Question

Help me with C++ please:

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.

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

There are 3 tabs: dateType.h, dateTypelmp.cpp, main.cpp

dateType.h:

#ifndef date_H 
#define date_H
 
class dateType
{
public:
    void setDate(int month, int day, int year);
      //Function to set the date.
      //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 isLeapYear();
      //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
      //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.

private:
    int dMonth;      //variable to store the month
    int dDay;        //variable to store the day
    int dYear;       //variable to store the year
};

#endif
Expert Solution
steps

Step by step

Solved in 5 steps with 1 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

There is an error I am recieving, it says this: 

main.cpp: In function ‘int main()’:
main.cpp:11:28: error: expected primary-expression before ‘>>’ token
 ::cin >> month >> - >> day >> ->> year;
                     ^~
main.cpp:11:38: error: expected primary-expression before ‘->’ token
  month >> - >> day >> ->> year;
                       ^~
main.cpp:11:40: error: expected unqualified-id before ‘>’ token
  month >> - >> day >> ->> year;

Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Events
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.
Similar questions
  • SEE MORE QUESTIONS
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