Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

in C + + Define a function called ExactChange that takes the total change amount in cents and an integer vector as parameters. Function ExactChange

in C++ Define a function called ExactChange that takes the total change amount in cents and an integer vector as parameters. Function ExactChange() calculates the change using the fewest coins and stores the number of each coin type used into the vector parameter. Index 0-3 of the vector 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 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. Positions 0-3 of coinVals should contain the number of pennies, nickels, dimes, and quarters, respectively.
void ExactChange(int userTotal, vector& coinVals)Your program must define and call the following function. Positions 0-3 of coinVals should contain the number of pennies, nickels, dimes,
and quarters, respectively.
void ExactChange(int userTotal, vector
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_2

Step: 3

blur-text-image_3

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

Beginning VB 2008 Databases

Authors: Vidya Vrat Agarwal, James Huddleston

1st Edition

1590599470, 978-1590599471

More Books

Students also viewed these Databases questions