Book Purchase Invoice -
Write a C++ program that asks for the following information about a book order from the console:
- Title
- Author
- ISBN (hint: careful about what data type to use)
- Price
- Quantity (number of books to purchase)
Make use of the following data types:
Additional Requirements:
- Assume the tax on the total price of the books is 7%
- Charge a $2 per book fee for each book over the quantity of 5. For example, if you order 5 books there is no extra fee, but if you order 7 there will be $4 in fees.
- Tax should not be calculated on the fees.