Statements to print a label

Assignment Help JAVA Programming
Reference no: EM13160411

Formatting Output

File Deli.java contains a partial program that computes the cost of buying an item at the deli. Save the program to your directory and do the following:

  1. Study the program to understand what it does.
  1. Add the import statements to import the DecimalFormat and NumberFormat classes.
  1. Add the statement to declare money to be a NumberFormat object as specified in the comment.
  1. Add the statement to declare fmt to be a DecimalFormat object as specified in the comment.
  1. Add the statements to print a label in the following format (the numbers in the example output are correct for input of $4.25 per pound and 41 ounces). Use the formatting object money to print the unit price and total price and the formatting object fmt to print the weight to 2 decimal places.

      ***** CS Deli *****

     Unit Price: $4.25 per pound

     Weight: 2.56 pounds

     TOTAL: $10.89

// ********************************************************

// DeliFormat.java

//

// Computes the price of a deli item given the weight

// (in ounces) and price per pound -- prints a label,

// nicely formatted, for the item.

//

// ********************************************************

import java.util.Scanner;

public class Deli

{

    // ---------------------------------------------------

    // main reads in the price per pound of a deli item

    // and number of ounces of a deli item then computes

    // the total price and prints a "label" for the item

    // --------------------------------------------------

    public static void main (String[] args)

    {

        final double OUNCES_PER_POUND = 16.0;

        double pricePerPound; // price per pound

        double weightOunces;   // weight in ounces

        double weight;               // weight in pounds

        double totalPrice;       // total price for the item

        Scanner scan = new Scanner(System.in);

        // Declare money as a NumberFormat object and use the

        // getCurrencyInstance method to assign it a value

        // Declare fmt as a DecimalFormat object and instantiate

        // it to format numbers with at least one digit to the left of the

        // decimal and the fractional part rounded to two digits.

        // prompt the user and read in each input

        System.out.println ("Welcome to the CS Deli!!\n ");

        System.out.print ("Enter the price per pound of your item: ");

        pricePerPound = scan.nextDouble();

        System.out.print ("Enter the weight (ounces): ");

        weightOunces = scan.nextDouble();

        // Convert ounces to pounds and compute the total price

        weight = weightOunces / OUNCES_PER_POUND;

        totalPrice = pricePerPound * weight;

        // Print the label using the formatting objects

        // fmt for the weight in pounds and money for the prices

    }

}

Reference no: EM13160411

Questions Cloud

Write the structures of the products you would expect to get : Write the structures of the products you would expect to get if you react N-cinnamaldehyde-m-nitroaniline with catalytic hydrogenation (that means adding H2 and Pt or Pd).
What is the total indirect manufacturing cost : During December, LP Products incurred the following cost:advertising expense $10,000. General and administrative cost $ 9,000From the information given above, what is the total indirect manufacturing cost.
What do keynesian and new classical economists believe : What do Keynesian and New classical economists believe about macroeconomic policy. Which role of thinking do you think you would fit in?
What will be the volume : A sample of neon has a volume of 575 mL when it is at a pressure of 751 mmHg. What will be the volume when the pressure is increased to 1262 mmHg?
Statements to print a label : Add the statements to print a label in the following format (the numbers in the example output are correct for input of $4.25 per pound and 41 ounces). Use the formatting object money to print the unit price and total price and the formatting object ..
Evaluate the arguments of the two partners : Evaluate the arguments of the two partners. For full points please also explain and illustrate their points by identifying the relevant and irrelevant costs for this decision.
Interactions between our two species : They ask you to outline the ethical theory that should guide the interactions between our two species. Which ethical theory would you describe? Why? Discuss
Per capita income of residents in a country : Assume that the per capita income of residents in a country is normally distributed with mean = $1000 and variance = 10,000. what is the probability that the per capita income lies between $800 and $1200?
State draw structures of the intermediate imines formed : Suppose that each of the following pairs of compounds are being used as reactants in this experiment. Draw structures of the intermediate imines formed,

Reviews

Write a Review

JAVA Programming Questions & Answers

  Give at least one constructor without any parameter

We learned as popular Set implementation. Write own TreeSet class that implements following interface: You are to give at least one constructor without any parameter.

  Create java program to describe inheritance and polymorphism

Create a Java program based on the geometric shapes example described at the beginning of this lesson using Classes Square, Triangle, Rectangle, and Circ leto help describe inheritance and polymorphism.

  Create java applet to represent grade of gas

Write a java applet (not a java application program) for costco gas station. The applet will first ask you whether you are a costco customer, then the grade of gas you want to use.

  Write program in java for total amount of customer-s order

Write down program in Java which would ask for clerk to enter total amount of customer's order. Program will then compute seven percent (7%) sales tax.

  Write a recursive program

Write a recursive program to compute the number of ways in which an integer k can be written as sum

  Java program ask user to enter 10-character telephone number

Write a Java program that asks the user to enter a 10-character telephone number in the format XXX-XXX-XXXX. The program should display the telephone number with any alphabetic characters

  Implement bounded partial queue by using signaling mechanism

Implement the same using a signaling mechanism that signals to all waiting dequeuers and do a performance comparison using timing analysis. Which works faster?

  Create the html form and call the servlet to print out

1. write a calculator Servlet that adds, subtract, multiples and divides. Create the html form and call the servlet to print out the answer

  Represent one book in java

Represent one book in java

  Write program in java to calculate interest

Write a program in java to do the following : the following data is stored for each customer in the bank: account number,average balance and number of transaction for each customer it is required to calculate the interest earn

  Create a recursive factorial program

Assignment 1: Create a recursive factorial program that prompts the user for an integer  N  and writes out a series of equations representing the calculation of  N !. For example, if the input is 4, the output could be:

  Write down java console application to add new student

Write down java console application presents the following menu. Add new student and scores in Biology, Physics and chemistry Search for a given student.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd