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

  Recursive factorial program

Write a class Array that encapsulates an array and provides bounds-checked access. 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!.

  Hunt the wumpus game

Reprot on Hunt the Wumpus Game has Source Code listing, screen captures and UML design here and also, may include Javadoc source here.

  Create a gui interface

Create GUI Interface in java programing with these function: Sort by last name and print all employees info, Sort by job title and print all employees info, Sort by weekly salary and print all employees info, search by job title and print that emp..

  Plot pois on a graph

Write a JAVA program that would get the locations of all the POIs from the file and plot them on a map.

  Write a university grading system in java

University grading system maintains number of tables to store, retrieve and manipulate student marks. Write a JAVA program that would simulate a number of cars.

  Wolves and sheep: design a game

This project is designed a game in java. you choose whether you'd like to write a wolf or a sheep agent. Then, you are assigned to either a "sheep" or a "wolf" team.

  Build a graphical user interface for displaying the image

Build a graphical user interface for displaying the image groups (= cluster) in JMJRST. Design and implement using a Swing interface.

  Determine the day of the week for new year''s day

This assignment contains a java project. Project evaluates the day of the week for New Year's Day.

  Write a java windowed application

Write a Java windowed application to do online quiz on general knowledge and the application also displays the quiz result.

  Input pairs of natural numbers

Java program to input pairs of natural numbers.

  Create classes implement java interface

Interface that contains a generic type. Create two classes that implement this interface.

  Java class, array, link list , generic class

These 14 questions covers java class, Array, link list , generic class.

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