Q. Please solve this C++ program and show all the steps.  (kindly do not use any advanced coding or coding info from any other program. Don't copy from other sources too) a) Add a new function convMonth to the class Date that returns the month in letters (e.g., January, February, etc.). b)Add a function that prints the date using the following format: Month dd, yyyy . Example, January 21, 2023 c) Test the new functions of the class Date by creating dynamically (i.e., using pointers) two objects of the class Date and invoking the new member functions on both objects. Deliverables: date.h, date.cpp, testdate.cpp. (any description or thought process of this coding problem will be really useful, particularly in part c) please let me know if there's any way I could contact you for further assistance,( please!)  Thank you !

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter5: Making Decisions
Section: Chapter Questions
Problem 8PE
icon
Related questions
Question

Q. Please solve this C++ program and show all the steps. 
(kindly do not use any advanced coding or coding info from any other program. Don't copy from other sources too)

a) Add a new function convMonth to the class Date that returns the month in letters (e.g., January, February, etc.).

b)Add a function that prints the date using the following format: Month dd, yyyy . Example, January 21, 2023

c) Test the new functions of the class Date by creating dynamically (i.e., using pointers) two objects of the class Date and invoking the new member functions on both objects.

Deliverables: date.h, date.cpp, testdate.cpp.

(any description or thought process of this coding problem will be really useful, particularly in part c)

please let me know if there's any way I could contact you for further assistance,( please!) 

Thank you !

 

Q1.
/* date.h */
#ifndef DATE H
#define DATE H
class Date {
public:
Date (int=1, int=1, int=2000); // sets day, month, year
void setDate (int, int, int); // sets the date
void printDate() const; // prints date to the screen
};
#endif /* DATE H */
private:
/* date.cpp */
#include <iostream>
#include "date.h"
using namespace std;
// Constructor
{
int day;
int month;
int year;
}
Date::Date (int d, int m, int y)
day = d;
month = m;
year = y;
Consider the following class:
}
// sets date
void Date::setDate (int d, int m, int y)
{
}
day
= d;
month= m;
year = y;
// prints date
void Date: :printDate() const
{
a.
etc.).
b.
2023
cout << month << "/" << day << "/" << year << "\n";
Add a new function convMonth to the class Date that returns the month in letters (e.g., January, February,
Add a function that prints the date using the following format: Month dd, yyyy . Example, January 21,
C.
Test the new functions of the class Date by creating dynamically (i.e., using pointers) two objects of
the class Date and invoking the new member functions on both objects.
Deliverables: date.h, date.cpp, testdate.cpp.
Transcribed Image Text:Q1. /* date.h */ #ifndef DATE H #define DATE H class Date { public: Date (int=1, int=1, int=2000); // sets day, month, year void setDate (int, int, int); // sets the date void printDate() const; // prints date to the screen }; #endif /* DATE H */ private: /* date.cpp */ #include <iostream> #include "date.h" using namespace std; // Constructor { int day; int month; int year; } Date::Date (int d, int m, int y) day = d; month = m; year = y; Consider the following class: } // sets date void Date::setDate (int d, int m, int y) { } day = d; month= m; year = y; // prints date void Date: :printDate() const { a. etc.). b. 2023 cout << month << "/" << day << "/" << year << "\n"; Add a new function convMonth to the class Date that returns the month in letters (e.g., January, February, Add a function that prints the date using the following format: Month dd, yyyy . Example, January 21, C. Test the new functions of the class Date by creating dynamically (i.e., using pointers) two objects of the class Date and invoking the new member functions on both objects. Deliverables: date.h, date.cpp, testdate.cpp.
Expert Solution
steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Knowledge Booster
Types of 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.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781305480537
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage