Retail price calculator

Assignment Help Basic Computer Science
Reference no: EM132099019

Retail Price Calculator (page 312)

program that asks the user to enter an item's wholesale cost and its markup percentage. It should then display the item's retail price. For example:

  • If an item's wholesale cost is 5.00 and its markup percentage is 100 percent, then the item's retail price is 10.00.
  • If an item's wholesale cost is 5.00 and its markup percentage is 50 percent, then the item's retail price is 7.50.

The program should have a method named calculateRetail that receives the wholesale cost and the markup percentage as arguments, and returns the retail price of the item.

Class name: RetailPriceCalculator

//CSIS 130

 import java.util.Scanner;

 public class RetailPriceCalculator2

 {

    public static void main(String[] args)

    {

       Scanner input = new Scanner(System.in);

       double wholeSaleCost, markUpPerc,retailPrice ;

       System.out.println("Please enter the wholesale cost or -1 exit:");

       wholeSaleCost = input.nextDouble();

     while (wholeSaleCost != -1) {

     if (wholeSaleCost < 1 ) {

        System.out.println("Wholesale cost cannot be a negative value.");

      }else{

       System.out.println("Please enter the markup percentage or -1 exit:");

       markUpPerc = input.nextDouble();

     while (markUpPerc != -1) {

     if (markUpPerc < 1 ) {

        System.out.println("Markup cannot be less than -100%.n");

      }else{

       retailPrice = calculateRetail(wholeSaleCost, markUpPerc);

       System.out.println("The retail price is: " + retailPrice);

       }   

    }

   }}

  }

    /*calculateRetail method

   *

   */

    public static double calculateRetail(double wholesale, double markUp)

    {

       double markUpConverted = markUp/100;

       double markUpAmount = wholesale * markUpConverted;

       double retail = wholesale + markUpAmount;

       return retail;

    }

}

Reference no: EM132099019

Questions Cloud

Display a message stating whether the student is admitted : Show a JavaScript program that should display a message stating whether the student is admitted, and if so, whether the student is grated a scholarship.
Write a program that reads a customer account number : Write a program that reads a customer's account number (int type), account type (char type; s or S for savings, c or C for checking),
Familiarity with the eclipse environment : After you gain familiarity with the Eclipse environment, you are going to create a very simple Java program, and run it using Eclipse. Following is the sample c
Define a class named payment that contains : Define a class named Payment that contains a member variable of type double that stores the amount of the payment and appropriate
Retail price calculator : program that asks the user to enter an item's wholesale cost and its markup percentage. It should then display the item's retail price. For example:
Find the maximum temperature read : Need Major Help. I"m so close! looking to add to this code to find the maximum and minimum temperatures.
Must input how many questions they want : I need a program that will give the user an addition test. Before the test begins the user must input how many questions they want and what the largest number
Welcome banner and a farewell : My professor wants a welcome banner and a farewell banner in a method in main class of my program to launch as soon as the program starts and ends I'm just a li
Create a very simple four function integer calculator : Create a very simple four function integer calculator with buttons for Add, Subtract, Multiply, and Divide, and with two text-type input fields.

Reviews

Write a Review

Basic Computer Science Questions & Answers

  Identifies the cost of computer

identifies the cost of computer components to configure a computer system (including all peripheral devices where needed) for use in one of the following four situations:

  Input devices

Compare how the gestures data is generated and represented for interpretation in each of the following input devices. In your comparison, consider the data formats (radio waves, electrical signal, sound, etc.), device drivers, operating systems suppo..

  Cores on computer systems

Assignment : Cores on Computer Systems:  Differentiate between multiprocessor systems and many-core systems in terms of power efficiency, cost benefit analysis, instructions processing efficiency, and packaging form factors.

  Prepare an annual budget in an excel spreadsheet

Prepare working solutions in Excel that will manage the annual budget

  Write a research paper in relation to a software design

Research paper in relation to a Software Design related topic

  Describe the forest, domain, ou, and trust configuration

Describe the forest, domain, OU, and trust configuration for Bluesky. Include a chart or diagram of the current configuration. Currently Bluesky has a single domain and default OU structure.

  Construct a truth table for the boolean expression

Construct a truth table for the Boolean expressions ABC + A'B'C' ABC + AB'C' + A'B'C' A(BC' + B'C)

  Evaluate the cost of materials

Evaluate the cost of materials

  The marie simulator

Depending on how comfortable you are with using the MARIE simulator after reading

  What is the main advantage of using master pages

What is the main advantage of using master pages. Explain the purpose and advantage of using styles.

  Describe the three fundamental models of distributed systems

Explain the two approaches to packet delivery by the network layer in Distributed Systems. Describe the three fundamental models of Distributed Systems

  Distinguish between caching and buffering

Distinguish between caching and buffering The failure model defines the ways in which failure may occur in order to provide an understanding of the effects of failure. Give one type of failure with a brief description of the failure

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