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.

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter10: Introduction To Inheritance
Section: Chapter Questions
Problem 6RQ
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.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning