ComputerScienceExpert

(11)

$18/per page/

About ComputerScienceExpert

Levels Tought:
Elementary,Middle School,High School,College,University,PHD

Expertise:
Applied Sciences,Calculus See all
Applied Sciences,Calculus,Chemistry,Computer Science,Environmental science,Information Systems,Science Hide all
Teaching Since: Apr 2017
Last Sign in: 103 Weeks Ago, 2 Days Ago
Questions Answered: 4870
Tutorials Posted: 4863

Education

  • MBA IT, Mater in Science and Technology
    Devry
    Jul-1996 - Jul-2000

Experience

  • Professor
    Devry University
    Mar-2010 - Oct-2016

Category > Programming Posted 19 May 2017 My Price 8.00

Write a C program that asks the user to enter a U.S

Question: 1. Modify (dollar.c) (Write a C program that asks ...

1. Modify (dollar.c) (Write a C program that asks the user to enter a U.S. dollar amountand then shows how to pay that amount using the smallest number of $20, $10, $5, and $1

bills.) So it includes the following function:
void pay_amount(int dollars, int *twenties, int *tens, int*fives, int *ones);

The function determines the smallest number of $20, $10, $5, and $1 bills necessary to paythe amount represented by the dollars parameter. The twenties parameter points toa variable in which the function will store the number of $20 bills required. The tens,fives, and ones parameters are similar. Modify the main function so it callspay_amount.

This is dollar.c:

#include <stdio.h>
int main(){

//initialize variables and read inputint dollar = 0, twenty = 0, ten = 0, five = 0, one =0;

printf("Enter a dollar amount:n");
scanf("%d", &dollar);

//check the range of the input amountif(dollar < 0 || dollar > 1000000000)   

printf("Invalid amount %d,nAmount must be between 0 and 1000000000,

inclusiven", dollar);        

else {

twenty = dollar/20;
ten = (dollar - (twenty * 20))/10;
five = (dollar - (twenty * 20) - (ten * 10))/5;
one = dollar - (twenty * 20) - (ten * 10) - (five * 5);

printf("$20 bills: %dn", twenty);
printf("$10 bills: %dn", ten);        
printf("$5 bills: %dn", five);        
printf("$1 bills: %dn", one);

}

return 0;

}

Answers

(11)
Status NEW Posted 19 May 2017 12:05 AM My Price 8.00

-----------

Attachments

file 1495155686-Solutions file 2.docx preview (51 words )
H-----------ell-----------o S-----------ir/-----------Mad-----------am ----------- Th-----------ank----------- yo-----------u f-----------or -----------you-----------r i-----------nte-----------res-----------t a-----------nd -----------buy-----------ing----------- my----------- po-----------ste-----------d s-----------olu-----------tio-----------n. -----------Ple-----------ase----------- pi-----------ng -----------me -----------on -----------cha-----------t I----------- am----------- on-----------lin-----------e o-----------r i-----------nbo-----------x m-----------e a----------- me-----------ssa-----------ge -----------I w-----------ill----------- be----------- qu-----------ick-----------ly -----------onl-----------ine----------- an-----------d g-----------ive----------- yo-----------u e-----------xac-----------t f-----------ile----------- an-----------d t-----------he -----------sam-----------e f-----------ile----------- is----------- al-----------so -----------sen-----------t t-----------o y-----------our----------- em-----------ail----------- th-----------at -----------is -----------reg-----------ist-----------ere-----------d o-----------n -----------THI-----------S W-----------EBS-----------ITE-----------. ----------- Th-----------ank----------- yo-----------u -----------
Not Rated(0)