Question: Function call in expression: Reduced pricing Write a single statement that assigns totalCost with the discounted cost of item 1 and item 2 . Use

Function call in expression: Reduced pricing
Write a single statement that assigns totalCost with the discounted cost of item 1 and item 2. Use the provided function DiscountedPrice to determine the discounted cost of each item:
function saleItemCost = DiscountedPrice(originalItemCost, discountedRate)
% originalitemCost: Original cost of an item in dollars
% discountedRate: Discount rate as a decimal value
saleItemCost = originalItemCost *(1- discountedRate);
end
Ex: If item 1 costs 10 and has a 0.5 discount rate, and item 2 costs 20 and has a 0.4 discount rate, then assign totalCost with 17(ex: DiscountedPrice (10,0.5)+ DiscountedPrice (20,0.4) is equal to 5+12
Function 8
R Save
C Reset
MATLAB Documentation
function totalCost = CartTotal (item1Cost, item1Discount, item2Cost, item2Discount)
% Assign totalcost with the discounted cost of items 1 and 2
totalcost =0
Code to call your function ?
C Reset
1 CartTotal (10,0.5,20,0.4)
 Function call in expression: Reduced pricing Write a single statement that

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!