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
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
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:
Step by step
Solved in 5 steps with 1 images
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;