Question: Computer Science - Algorithms Write a function CHANGES( m ) (in psudocode), which returns a minimal number of coins to get a total of m

Computer Science - Algorithms

Write a function CHANGES(m) (in psudocode), which returns a minimal number of coins to get a total of m cents.

Constraints: There are four types of coins with values 1, 5, 10, and 25, respectively. The total amount of money m is within 199 cents.

Examples:

CHANGES(3) = 3: it takes at least 3 coins (1 cent each) to get a total of 3 cents.

CHANGES(6) = 2: it takes at least 2 coins (a 5-cent coin and 1-cent coin) to get a total of 6 cents.

CHANGES(99) = 9: it takes at least 9 coins (25 + 25 + 25 + 10 + 10 + 1 + 1 + 1 + 1) to get a total of 99 cents.

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!