Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1. Create the following classes in C++ Authors mag gender cha The class Author contains: Three private member variables: name (String), email (String), and gender

image text in transcribed
1. Create the following classes in C++ Authors mag gender cha The class Author contains: Three private member variables: name (String), email (String), and gender (char of either 'm' or 'f'. A constructor to initialize the name, email and gender with the given values, - Public getters/setters: getName().getEmail(). set Email(), and getGender(). Aprint() function that returns "name (gender) at email", e.g., "Mike (m) at mJones somewhere.com" Priceprice double word The class Book contains: Four private member variables: name (String), author an instance of the Author class we have just created, assuming that each book has exactly one author), price (double). The public getters and setters: getName(). getAuthor()getPrice ().setPrice (). Aprint (that returns "book-name by author-name (gender) at email". You could reuse the Author's print() function, which returns "author-name (gender) at email" Write a program to test the Author and the Book classes. Create objects of each class type and use the print function in the objects to display information

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Students also viewed these Databases questions