Question: /*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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!