Question
In Matlab Please In purchases paid in cash, the seller must return money that was overpaid. This is commonly referred to as giving change. The
In Matlab Please
In purchases paid in cash, the seller must return money that was overpaid. This is commonly referred to as giving change." The bills and coins required to properly give change can be defined by a recursive relationship. If the amount paid is more than $100 more than the cost, then return a 100-dollar bill along with the result of a recursive call to the change function with 100 dollars subtracted from the amount paid. If the amount paid is more than $50 over the cost of the item, then return a 50-dollar bill, along with the result of a recursive call to the change function with 50 dollars subtracted. Similar clauses can be given for every denomination of US currency. The denominations of US currency, in dollars, are 100, 50, 20, 10, 5, 1, .25, .1, .05, and .01. For this problem, we will ignore the 2 dollar bill, which is not in common circulation. You may assume that cost and paid are scalars. If paid < cost, your function should return an empty matrix. The output variable, change, must be a column vector as shown in the example. Use recursion to write a function with header [change] = myChange(cost, paid) where cost is the cost of the item, paid is the amount paid, and change is an array containing the list of bills and coins that should be returned to the seller. Watch out for the base case!
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started