Question: Convert the following Class diagram to a C++ code: Book - ISBN: unsigned int Title: String Author: String + Book() + Book(unsigned int. String.

Convert the following Class diagram to a C++ code: Book - ISBN: unsigned int Title: String Author: String + Book() + Book(unsigned int. String. String) + setISBN(unsigned int): void + setTitle(String); void + setAuthor( String): void + getISBN): unsigned int + get Title(): String getAuthor: String + print(): void +-Book() Print() function should print the ISBN, Title and Author Name. Inside the destructor, the program should only print the message. "One object is removed". In the main(): Make two objects of the class Book: 1- The first object Book1, initialize it using the default constructor. 2- The second object Book2, give the object the following information: ISBN=1234, Title="C++ How to program" and Author="Paul Deitel". Print the content of Book1 and Book2.
Step by Step Solution
3.42 Rating (155 Votes )
There are 3 Steps involved in it
Heres the equivalent C code for the class diagram include include class Book private unsigned int IS... View full answer
Get step-by-step solutions from verified subject matter experts
