Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a program to calculate the area of a circle ( 3.1425*r*r ). The program will output the area of the circle based on a

Write a program to calculate the area of a circle ( 3.1425*r*r ).  The program will output the area of the circle based on a radius value initialized in the program.


JAVA HOMEWORK-2

Write a program that reads an integer value between 0 and 100 (inclusive), representing the amount of a purchase in cents.  Produce an error message if the input value is not in range.  If the input is valid, determine the amount of change that would be received from one dollar, and print the number of quarters, dimes, nickels, and pennies that should be returned.  Maximize the coins with the highest value.

Follow the format below.

Enter the purchase amount [0-100 ]:  36

OUTPUT:

Your change of 64 cents is given as:

  2 Quarters

  1 Dimes

  0 Nickels

  4 Pennies


HINT:  64 / 25 equals 2, and 64 % 25 equals 14


Use the following lines of code to read an integer from the user.  The Scanner object will be used.

Don't forget to import the java.util.Scanner package. 


import java.util.Scanner;


public static void main(String[] args) {


   // Declare a data type Scanner


int number;

Scanner scan = new Scanner (System.in);


System.out.println("Input a number: ");

        number = scan.nextInt();


   // .....program logic goes here .....


} // end main


Step by Step Solution

3.34 Rating (151 Votes )

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

Java How To Program Late Objects Version

Authors: Paul Deitel, Deitel & Associates

8th Edition

0136123716, 9780136123712

More Books

Students also viewed these Programming questions

Question

Discuss the significance of evolutionary theory to psychology.

Answered: 1 week ago