Posts
 
Reputation
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
~6K People Reached
Favorite Forums
Favorite Tags
c++ x 1

1 Posted Topic

Member Avatar for powerdink

#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 …

Member Avatar for Brandon5122
0
6K

The End.