Question: 6 . 2 1 LAB: Exact change - functions Define a function called exact _ change that takes the total change amount in cents and
LAB: Exact change functions
Define a function called exactchange that takes the total change amount in cents and calculates the change using the fewest coins. The
coin types are pennies, nickels, dimes, and quarters. Then write a main program that reads the total change amount as an integer input,
calls exactchange and outputs the change, one coin type per line. Use singular and plural coin names as appropriate, like penny vs
pennies. Output no change" if the input is or less.
Ex: If the input is:
or less the output is:
no change
Ex: If the input is:
the output is:
dimes
quarter
Your program must define and call the following function. The function exactchange should return numpennies, numnickels,
numdimes, and numquarters.
def exactchangeusertotal
LAB
ACTIVITY
: LAB: Exact change functions
main.py
Load default template...
# Define your function here
if :
int input
numpennies, numnickels, numdimes, numquarters exactchangeinputval
# Type your code here.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
