Create a class called Invoice that a hardware store might use to represent an invoice for an item sold at store. An Invoice should include six data members- a)    part number (type string) b)    part description (type string) c)    quantity of the item being purchased (type int) d)    price per item (type int) e)    value-added tax (VAT) rate as a decimal (type double) f)      Discount rate as a decimal (type double).

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter11: Introduction To Classes
Section11.2: Basic Class Functions
Problem 5E
icon
Related questions
Question

Create a class called Invoice that a hardware store might use to represent an invoice for an item sold at store. An Invoice should include six data members-

a)    part number (type string)

b)    part description (type string)

c)    quantity of the item being purchased (type int)

d)    price per item (type int)

e)    value-added tax (VAT) rate as a decimal (type double)

f)      Discount rate as a decimal (type double).

Your class should have a constructor that initializes the six data members. The constructor should initialize the first four data members with values from parameters and the last two data members to default values of 0.20 per cent and zero respectively. Provide a set and a get functions for each data member. In addition, provide a member function named getInvoiceAmount that calculates the invoice amount (i.e., multiplies the quantity by the price per item and applies the tax and discount amounts), then returns the amount. Have the set data members perform validity checks on their parameters—if a parameter value is not positive, it should be left unchanged. Write a main Function to demonstrate Invoice’s capabilities.

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
JQuery and Javascript
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
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr