Write a function that converts an input of some integer number of nickels into o
ID: 3570836 • Letter: W
Question
Write a function that converts an input of some integer number of nickels into outputs of integer numbers of dollars, quarters, and nickels. Do not write a main function. Your function does not do cin or cout. Your function will have four parameters. Make sure you use appropriate parameter passing techniques! Your function will be a void function. There are 5 nickels in a quarter, and 20 nickels in a dollar. For example, if the total number of nickels input is 27, the results are 1 dollar, 1 quarter, and 2 nickels
Explanation / Answer
void convertNickels(int nickels)
{
int dollars=0,quarters=0;
dollars=nickels/20;
nickels=nickels%20;
if(nickels>0)
{
quarters=nickels/5;
nickels=nickels%5;
}
System.out.println("Dollars=" + dollars);
System.out.println("Quarters=" + quarters);
if(nickels>0)
System.out.println("Nickels=" + nickels);
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.