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).
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. |
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images