Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.71K
1 Posted Topic
Hi, How about this one: [CODE]#include <iostream> #include <string> using namespace std; class dayType { public: void setDay(char day); void nextDay(); void printDay(); void printTomorrow(); private: string dayofweek[7]; int current; char userEntry; }; int main(void) { dayType myDay; char day; cout << "Please enter M for Monday, T for Tuesday, …
The End.
miami99