OOP C++ Problem This task needs to be done through OOP C++ Object-Oriented Programming in C++ Project Consider the following a file (movies.txt) with the following list of movies (comma separated list). SNO, Name, NoOfPeopleLiked 1, The Shawshank Redemption, 77 2, The Godfather, 20 3, Into The Wild, 35 4, The Dark Knight, 55 5, 12 Angry Men, 44 6, Schindler's List, 33 7, The Lord of the Rings: The Return of the King, 25 8, Pulp Fiction, 23 9, The Good, the Bad and the Ugly, 32 10, The Lord of the Rings: The Fellowship of the Ring, 56 OUTPUT SHOULD BE LIKE THIS Enter the name of movie you like: Into The Wild The movie is found in the database. It is already the favourite movie of 35 people. Do you like it as well (y/n)? y Do you want to look for another movie (y/n)? y Enter the name of movie you like: In Time The movies is not found in the database. Do you want to add it to the list of movies (y/n)? y The movie In Time is added to the database. It is liked by 1 person. Do you want to look for another movie (y/n)? n ****************************************** The top five movies in database are: 1, The Shawshank Redemption, 77 2, The Lord of the Rings: The Fellowship of the Ring, 56 3, The Dark Knight, 55 4, 12 Angry Men, 44 5, Into The Wild, 36 ******************************************* The total number of people who have already rated the movies is: 402 YOU'LL HAVE TO HANDLE A COMMA SEPARATED FILE. MEANS YOU HAVE TO READ A COMMA SEPARATED FILE. YOU CAN TAKE EVEN 20 HOURS. BUT PLEASE DO IT ACCORDING TO THE INSTRUCTIONS THANK YOU
OOP C++ Problem
This task needs to be done through OOP C++
Object-Oriented Programming in C++
Project
Consider the following a file (movies.txt) with the following list of movies (comma separated list).
SNO, Name, NoOfPeopleLiked
1, The Shawshank Redemption, 77
2, The Godfather, 20
3, Into The Wild, 35
4, The Dark Knight, 55
5, 12 Angry Men, 44
6, Schindler's List, 33
7, The Lord of the Rings: The Return of the King, 25
8, Pulp Fiction, 23
9, The Good, the Bad and the Ugly, 32
10, The Lord of the Rings: The Fellowship of the Ring, 56
OUTPUT SHOULD BE LIKE THIS
Enter the name of movie you like: Into The Wild The movie is found in the Do you want to look for another movie (y/n)? y Enter the name of movie you like: In Time The movies is not found in the database. Do you want to add it to the list of movies (y/n)? y The movie In Time is added to the database. It is liked by 1 person. Do you want to look for another movie (y/n)? n ****************************************** The top five movies in database are: 1, The Shawshank Redemption, 77 2, The Lord of the Rings: The Fellowship of the Ring, 56 3, The Dark Knight, 55 4, 12 Angry Men, 44 5, Into The Wild, 36 ******************************************* The total number of people who have already rated the movies is: 402 |
YOU'LL HAVE TO HANDLE A COMMA SEPARATED FILE. MEANS YOU HAVE TO READ A COMMA SEPARATED FILE.
YOU CAN TAKE EVEN 20 HOURS. BUT PLEASE DO IT ACCORDING TO THE INSTRUCTIONS THANK YOU
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images