Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a program that prompts the user for a count of quarters, dimes, nickels and pennie s. The program must output the total amount in

Write a program that prompts the user for a count of quarters, dimes, nickels and pennie

s. The program

must output the total amount in dollars and cents. For example:

Enter number of quarters:

6

Enter number of dimes:

2

Enter number of nickels:

0

Enter number of pennies:

1

You have $1.71 in coins.

Note: you must ensure that the output

properly shows two decimal places (e.g. $1.50 vs. $1.5) and, if any of

the counts are negative, provide an error message after inputting all counts (supplied as a constant)

starter code:

//TODO: document this class
public class LA1b {
/**
* Error message to display for any non-negative counts
*/
public static final String ERR_MSG = "All coin counts must be non-negative!";
// TODO: document this method
public static void main(String[] args) {
// TODO: write your code here
}
}

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

Step: 3

blur-text-image

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

Graph Databases New Opportunities For Connected Data

Authors: Ian Robinson, Jim Webber, Emil Eifrem

2nd Edition

1491930896, 978-1491930892

More Books

Students also viewed these Databases questions

Question

What are Measures in OLAP Cubes?

Answered: 1 week ago

Question

How do OLAP Databases provide for Drilling Down into data?

Answered: 1 week ago

Question

How are OLAP Cubes different from Production Relational Databases?

Answered: 1 week ago