Answered step by step
Verified Expert Solution
Question
1 Approved Answer
In JAVA, please step by step! Assignment 2.1 [35 points] Write a program that asks the user for an amount of money (entered in cents)
In JAVA, please step by step!
Assignment 2.1 [35 points] Write a program that asks the user for an amount of money (entered in cents) and then tells the user how to make change for that amount using only quarters, dimes, nickels, and pennies. Use the strategy used in lesson 2.2 (e.g., you must use the modulus operator), and format your output exactly as in this sample screen output. Note that the pennies must be output first. enter number of cents: 119 pennies: 4 nickels: 1 dimes: 1 quarters: 4 Assignment 2.1 [35 points] Write a program that asks the user for an amount of money (entered in cents) and then tells the user how to make change for that amount using only quarters, dimes, nickels, and pennies. Use the strategy used in lesson 2.2 (e.g., you must use the modulus operator), and format your output exactly as in this sample screen output. Note that the pennies must be output first. enter number of cents: 119 pennies: 4 nickels: 1 dimes: 1 quarters: 4Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started