Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

/*Design and implement a class dayType that implements the day of the week in a program. The class dayType should store the day, such as

/*Design and implement a class dayType that implements the day of the week in a program. The class dayType should store the day, such as Sun for Sunday. The program should be able to perform the following operations on an object of type dayType: Set the day. Print the day. Return the day. Return the next day. Return the previous day. Calculate and return the day by adding certain days to the current day. For example, if the current day is Monday and we add 4 days, the day returned is Friday. Similarly, if today is Tuesday and we add 13 days, the day returned is Monday. Write functions to implement above operations for class dayType. Also add appropriate constructors. Write a program to test various operations of this class. This is what I got so far I'm just not sure how to proceed from here. I'm supposed to use the function overload, thank you!*/

#include using namespace std; int main() { class dayType { private: int sunday; int monday; int tuesday; int wednesday; int thursday; int friday; int saturday; public: dayType(int sun, int mon, int tues, int wed, int thurs, int fri, int sat) { cout << " This is the constructor with the arguments input." << endl;

sunday = sun;

monday = mon;

tuesday = tues;

wednesday = wed;

thursday = thurs;

friday = fri;

saturday = sat;

} };

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Seven NoSQL Databases In A Week Get Up And Running With The Fundamentals And Functionalities Of Seven Of The Most Popular NoSQL Databases

Authors: Aaron Ploetz ,Devram Kandhare ,Sudarshan Kadambi ,Xun Wu

1st Edition

1787288862, 978-1787288867

Students also viewed these Databases questions