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
Re: dayType class
#ifndef _daytype_H_ #define _daytype_H_ # include <iostream> # include <string> using namespace std; class daytype { string Setday(string day); void Printday(); string getday(); string nextday(); string preday(); string addday(int numdays); daytype(); daytype(string day); private: string day; string weekday[7]; }; # endif #include <iostream> #include "daytype.h" # include <string> using namespace …
The End.
Brandon5122