-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a131ffb
commit 076178a
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
|
||
// Write your MyBook class here | ||
|
||
// Class Constructor | ||
// | ||
// Parameters: | ||
// title - The book's title. | ||
// author - The book's author. | ||
// price - The book's price. | ||
// | ||
// Write your constructor here | ||
|
||
|
||
// Function Name: display | ||
// Print the title, author, and price in the specified format. | ||
// | ||
// Write your method here | ||
|
||
// End class | ||
class MyBook: public Book{ | ||
int price; | ||
public: | ||
MyBook(string title, string author, int p):Book(title, author) | ||
{ | ||
price=p; | ||
} | ||
void display() | ||
{ | ||
cout<<"Title: "<<title<<endl; | ||
cout<<"Author: "<<author<<endl; | ||
cout<<"Price: "<<price<<endl; | ||
} | ||
}; |