I would like to prompt the user to tell me which genre the book is in. I thought I could probably give the user a menu where they enter digit for whichever choice. I wanted to know if you could just have the user input name like a string for the genre?
class Book
{
public:
enum Genre
{
fiction,
nonfiction,
periodical,
biograhpy,
children
};
//...
void get_genre();
//...
private:
//...
Genre genre;
};
//========================================================================================
//========================================================================================
void Book::get_genre()
{
return;
}