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
~254 People Reached
Favorite Forums
Favorite Tags
c++ x 7
Member Avatar for sadiekins

I need help with my program. I have four errors with the ostream. It should be print my list of books. I know its something simple... I just can't figure it out! [code] #include <iostream> #include <string> using namespace std; //---------------------------------------------------------------------------- class Book { private: string title, author, genre, pubyear, …

Member Avatar for mvmalderen
0
158
Member Avatar for sadiekins

Hello. I am trying to write a doubly linked list that uses data from a class. I have this class that I would like to use... [code] #include <iostream> #include <string> using namespace std; class Book { private: int PubYear; //Variables string Title, Author, Genre, Publisher; public: Book( ){}; //Default …

Member Avatar for sadiekins
0
96