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)...


Write a C++ program.


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

Extracted 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:<br>#include <iostream><br>#include<iomanip><br>using namespace std;<br>class Books<br>{<br>private:<br>string isbnNo, title, author;<br>float price, discountedprice, discountperc;<br>public:<br>Books();<br>Books(string,string,string,float,float);<br>void set_Data();<br>void calcDiscountedPrice();<br>void print();<br>float getDiscountedPrice();<br>

Extracted text: A. Given the declarations for a class Books that contains the following features: #include #include 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(); };
Jun 08, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here