Menu

[solved] – Question 8817

Write a function calculateItemCost prototyped by

double calculateItemCost(double itemPrice, char discountType, unsigned quantity);

so that the execution of this function will return the price for quantity number of the item priced originally at itemPrice each, and currently discounted according to discountType. For instance, calculateItemCost(10.90, ‘D’, 2) will return 17.44 because 17.44=10.9*0.8*2. Likewise calculateItemCost(5.50, ‘B’, 4) will return the value 19.8=5.50*0.9*4.

Expert Answer


OR


Leave a Reply

Your email address will not be published. Required fields are marked *