Question: 6 . 3 6 LAB: Exact change - methods Define a method called exactChange that takes the total change amount in cents and an integer
LAB: Exact change methods
Define a method called exactChange that takes the total change amount in cents and an integer array as parameters. Method exactChange calculates the change using the fewest coins and stores the number of each coin type used into the array parameter. Index of the array parameter should contain the number of pennies, nickels, dimes, and quarters respectively. 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 method. Positions of coinVals should contain the number of pennies, nickels, dimes, and quarters, respectively.
public static void exactChangeint userTotal, int coinVals
LAB
ACTIVITY
: LAB: Exact change methods
LabProgram.java
Load default template...
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
