Question: ANSWER IN C: A cashier distributes change using the maximum number of five dollar bills, followed by one dollar bills. For example, 19 yields 3

ANSWER IN C: A cashier distributes change using the maximum number of five dollar bills, followed by one dollar bills. For example, 19 yields 3 fives and 4 ones. Write a single statement that assigns the number of one dollar bills to variable numOnes, given amountToChange. Hint: Use the % operator.

#include

int main(void) { int amountToChange; int numFives; int numOnes;

scanf("%d", &amountToChange); numFives = amountToChange / 5;

/* Your solution goes here */

printf("numFives: %d ", numFives); printf("numOnes: %d ", numOnes);

return 0; }

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!