Create a class called Date that includes three pieces of information as data members-a month(type int), a day(type int) and a year(type int). Your class should have a constructor with three parameters that uses the parameters to initialize the three data members. For the purpose of this exercise, assume that the values provided for the year and day are correct, but ensure that the month value is in the range 1-12; if it isnt, set the month to 1. Provide a set and a get funtion for each data member. Provide a member function displayDate that displays the month, day and year seperated by forward slashes (/). Write a class program according to the main.cpp program given below. (25 points)

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
3. Create a class called Date that includes three pieces of information as data members-a
month(type int), a day(type int) and a year(type int). Your class should have a constructor with
three parameters that uses the parameters to initialize the three data members. For the purpose
of this exercise, assume that the values provided for the year and day are correct, but ensure
that the month value is in the range 1-12; if it isnt, set the month to 1. Provide a set and a get
funtion for each data member. Provide a member function displayDate that displays the month,
day and year seperated by forward slashes (/). Write a class program according to the main.cpp
program given below. (25 points)
//main.cpp
#include <iostream>
#include "Date.h" // include definition of class Date from Date.h
using namespace std;
// function main begins program execution
int main()
{
Date date( 5, 6, 1981 ); // create a Date object for May 6, 1981
// display the values of the three Date data members
cout « "Month: " <« date.getMonth() « endl;
cout « "Day: " « date.getDay () <« endl;
cout <« "Year:
« date.getYear() « endl;
cout « "\noriginal date:" <« endl;
date.displayDate(); // output the Date as 5/6/1981
// modify the Date
date.setMonth( 13 ); // invalid month
date.setDay( 1 );
date.setYear( 2005 );
cout <« "\nNew date:" <« end1;
date.displayDate(); // output the modified date (1/1/2005)
} // end main
Transcribed Image Text:3. Create a class called Date that includes three pieces of information as data members-a month(type int), a day(type int) and a year(type int). Your class should have a constructor with three parameters that uses the parameters to initialize the three data members. For the purpose of this exercise, assume that the values provided for the year and day are correct, but ensure that the month value is in the range 1-12; if it isnt, set the month to 1. Provide a set and a get funtion for each data member. Provide a member function displayDate that displays the month, day and year seperated by forward slashes (/). Write a class program according to the main.cpp program given below. (25 points) //main.cpp #include <iostream> #include "Date.h" // include definition of class Date from Date.h using namespace std; // function main begins program execution int main() { Date date( 5, 6, 1981 ); // create a Date object for May 6, 1981 // display the values of the three Date data members cout « "Month: " <« date.getMonth() « endl; cout « "Day: " « date.getDay () <« endl; cout <« "Year: « date.getYear() « endl; cout « "\noriginal date:" <« endl; date.displayDate(); // output the Date as 5/6/1981 // modify the Date date.setMonth( 13 ); // invalid month date.setDay( 1 ); date.setYear( 2005 ); cout <« "\nNew date:" <« end1; date.displayDate(); // output the modified date (1/1/2005) } // end main
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY