std::cout<<"Welcome to HBO Max, The one place to watch any of your favourites, on the go.\n";
std::cout<<"Simply pick a Genre, and we will pick something from our catalogue for you to watch.\n";
std::cout<<"Now, Movie or TV Show?\n";
std::getline(std::cin, selection);
/*I used getline due to the fact that TV show is two words, if I were to use the normal
std:cin, it would have only read until
TV, instead of both words. */
std::cout<<"What Genre do you wish to watch?";
std::cin>> genre;
if(selection =="Movie"){
if(genre =="Comedy"){
std::cout<<"Movie Suggestion: A Minecraft Movie\n";
std::cout<<"Blurb: Four misfits are suddenly pulled through a mysterious portal into a bizarre, cubic wonderland that thrives on imagination";
}
elseif(genre =="Romance"){
std::cout<<"Movie Suggestion: In the Mood For Love\n";
std::cout<<"Blurb: Two neighbors form a strong bond after both suspect extramarital activities of their spouses. However, they agree to keep their bond platonic so as not to commit similar wrongs.";
}
elseif(genre =="Fantasy"){
std::cout<<"Movie Suggestion: The Hobbit: An Unexpected Journey\n";
std::cout<<"Blurb: A reluctant Hobbit, Bilbo Baggins, sets out to the Lonely Mountain with a spirited group of dwarves to reclaim their mountain home and the gold within it from the dragon Smaug.";
}
else{
std::cout<<"My apologies, that genre is still under works.";
}
}
elseif(selection =="TV Show"){
if(genre =="Comedy"){
std::cout<<"TV Show Suggestion: Silicon Valley\n";
std::cout<<"Blurb: Follows the struggle of Richard Hendricks, a Silicon Valley engineer trying to build his own company called Pied Piper.";
}
elseif(genre =="Romance"){
std::cout<<"TV Show Suggestion: The Gilded Age\n";
std::cout<<"Marian Brook, a rural girl, moves to New York after her father's death. However, things get complicated when she must assimilate into the clan of a railroad tycoon.";
}
elseif(genre =="Fantasy"){
std::cout<<"TV Show Suggestion: Game of Thrones\n";
std::cout<<"Nine noble families wage war against each other in order to gain control over the mythical land of Westeros. Meanwhile, a force is rising after millenniums and threatens the existence of living men.";
}
else{
std::cout<<"My apologies, that genre is still under works.";
}
}
else{
std::cout<<"Sorry, I can only suggest Movies or TV shows.";
Welcome to HBO Max, The one place to watch any of your favourites, on the go.
Simply pick a Genre, and we will pick something from our catalogue for you to watch.
Now, Movie or TV Show?
What Genre do you wish to watch?Sorry, I can only suggest Movies or TV shows.