Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

6 . 2 1 LAB: Exact change - functions Define a function called exact _ change that takes the total change amount in cents and

6.21 LAB: Exact change - functions
Define a function called exact_change 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 exact_change(), and outputs the change, one coin type per line. Use singular and plural coin names as appropriate, like 1 penny vs.2
pennies. Output "no change" if the input is 0 or less.
Ex: If the input is:
0
(or less), the output is:
no change
Ex: If the input is:
45
the output is:
2 dimes
1 quarter
Your program must define and call the following function. The function exact_change() should return num_pennies, num_nickels,
num_dimes, and num_quarters.
def exact_change(user_total)
545890.2208334.932097
LAB
ACTIVITY
6.21.1: LAB: Exact change - functions
010
main.py
Load default template...
# Define your function here
if =='':
?bar(inputval)?b=ar( int ( input ()))
num_pennies, num_nickels, num_dimes, num_quarters = exact_change(input_val)
# Type your code here.
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Fundamentals Of Database Systems

Authors: Sham Navathe,Ramez Elmasri

5th Edition

B01FGJTE0Q, 978-0805317558

More Books

Students also viewed these Databases questions