(1) Create three files:
Build the ItemToPurchase class with the following specifications:
(2) In main(), prompt the user for two items and create two objects of the ItemToPurchase class. Before prompting for the second item, callcin.ignore()to allow the user to input a new string.Ex:
Item 1 Enter the item name: Chocolate Chips Enter the item price: 3 Enter the item quantity: 1 Item 2 Enter the item name: Bottled Water Enter the item price: 1 Enter the item quantity: 10
(3) Add the costs of the two items together and output the total cost.Ex:
TOTAL COST Chocolate Chips 1 @ $3 = $3 Bottled Water 10 @ $1 = $10 Total: $13
Please help me with this problem using c++.
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here