Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a program to run c++ in Codeblocks. Program Description: Mary has found a collection of books (Books.txt) and a list of her favorite authors

Write a program to run c++ in Codeblocks.

Program Description: Mary has found a collection of books (Books.txt) and a list of her favorite authors (Authors.txt).

Your goal is to write a program for Mary, that allows her to browse both the book list and her favorite author list. The program should also display books written by her favorite authors in addition to their nationality which she does not know.

The main() function should only contain the Menu() function, which must display the available options. The program must only terminate upon the users command (you can include this as an option). The rest of the functionality should be invoked through functions from within Menu().

There are two .txt files. Each line in a file corresponds to an entry. You should store all information on arrays dedicated to each file.

Do NOT use global variables. If you do so there will be a deduction of 10 points from your total points.

File Description:

Books.txt

1.Book title

2.Author name

3.Year of publication in English language

4.Language originally written in

5.Genre

Authors.txt

1.Name

2.Date of Birth

3.Most Notable Book

Task 1:

Mary wants to be able to read the file. Create a Book struct that will retain all information that is present in the file. Create an array that will contain such information. From the first menu option, allow Mary to print the list. The underscores in the title and author name should be removed.

Task 2:

Similarly, Mary wants to print her favorite author List. Create an Author struct. Also, create a Date struct which will be an attribute of the Author struct, representing the date of birth. Finally, add a nationality attribute which will not be filled when reading the file. Just like in Task 1, create an authors array of type struct. From the second menu option, print the authors; the date of birth should exclude the day even though it is included in the file(whether the Date struct will contain a day attribute is up to you). The underscore in the authors name and most notable work should be removed.

Task 3:

Mary wants to find books by her favorite authors in the list. The third option in the menu, should print the author, his nationality (same as language book was originally written in), and the book title. There will only be one book matched for each author.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases DeMYSTiFieD

Authors: Andy Oppel

2nd Edition

0071747990, 978-0071747998

More Books

Students also viewed these Databases questions