Write the definitions of the member functions outside of the class based on the desriptions given below: (a) set_Data() Get user inputs for isbnNo, title, author, price and discountperc. (b) calcDiscountedPrice() Find the discountedPrice (the price after minus the discounted amount). (c) print() Display the book details. (d) getDiscountedPrice() Return the discountedPrice. (e) Books() Default constructor of the class. (f) Books(string,string,string, float,float); Parameterized constructor of the class.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Write a C++ program.

Write the definitions of the member functions outside of the class based on the desriptions given below:
(a) set_Data()
Get user inputs for isbnNo, title, author, price and discountperc.
(b) calcDiscountedPrice()
Find the discountedPrice (the price after minus the discounted amount).
(c) print()
Display the book details.
(d) getDiscountedPrice()
Return the discountedPrice.
(e) Books()
Default constructor of the class.
(f) Books(string,string,string,float,float);
Parameterized constructor of the class.
(e) "Books()
Display "Enjoy reading (book title)".
B. Create another function named func{.) that accepts an object (from Books class) by reference using a
reference object as an argument. In this function, call set_Data(), calcDiscountedPrice() and print()
using the reference object.
C. In main(), do the following:
(i)
Create an object of dlass Books called B1 assigning the following default value
ISBN
: 102009912
:7 Habits of Highly Effective People
: Stephen Covey
: RM 400.00
Title
Author
Original Price
Call function calcDiscountedPrice() and print() using object B1.
(ii)
(ii)
Create an array of class Books called B2 and size of the array is 3.
(iv)
Using a for loop, call func(..), passing the object elements of array B2. Determine the most
expensive book's price (after discount) and the number of books whose price after discount
is below RM30.
(v)
Display the most expensive book's price (after discount) and the number of books whose
price after discount is below RM30.
Transcribed Image Text:Write the definitions of the member functions outside of the class based on the desriptions given below: (a) set_Data() Get user inputs for isbnNo, title, author, price and discountperc. (b) calcDiscountedPrice() Find the discountedPrice (the price after minus the discounted amount). (c) print() Display the book details. (d) getDiscountedPrice() Return the discountedPrice. (e) Books() Default constructor of the class. (f) Books(string,string,string,float,float); Parameterized constructor of the class. (e) "Books() Display "Enjoy reading (book title)". B. Create another function named func{.) that accepts an object (from Books class) by reference using a reference object as an argument. In this function, call set_Data(), calcDiscountedPrice() and print() using the reference object. C. In main(), do the following: (i) Create an object of dlass Books called B1 assigning the following default value ISBN : 102009912 :7 Habits of Highly Effective People : Stephen Covey : RM 400.00 Title Author Original Price Call function calcDiscountedPrice() and print() using object B1. (ii) (ii) Create an array of class Books called B2 and size of the array is 3. (iv) Using a for loop, call func(..), passing the object elements of array B2. Determine the most expensive book's price (after discount) and the number of books whose price after discount is below RM30. (v) Display the most expensive book's price (after discount) and the number of books whose price after discount is below RM30.
A. Given the declarations for a class Books that contains the following features:
#include <iostream>
#include<iomanip>
using namespace std;
class Books
{
private:
string isbnNo, title, author;
float price, discountedprice, discountperc;
public:
Books();
Books(string,string,string,float,float);
void set_Data();
void calcDiscountedPrice();
void print();
float getDiscountedPrice();
"Books();
};
Transcribed Image Text:A. Given the declarations for a class Books that contains the following features: #include <iostream> #include<iomanip> using namespace std; class Books { private: string isbnNo, title, author; float price, discountedprice, discountperc; public: Books(); Books(string,string,string,float,float); void set_Data(); void calcDiscountedPrice(); void print(); float getDiscountedPrice(); "Books(); };
Expert Solution
steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Data members
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education