Cashregister class that can be used with the retailitem clas

Assignment Help C/C++ Programming
Reference no: EM13161795

Write a CashRegister class that can be used with the RetailItem class that you wrote in Part 1. The CashRegister class should simulate the sale of a retail item. It should have a constructor that accepts a RetailItem object as an argument. The constructor should also accept an integer that represents the quantity of items being purchased. In addition, the class should have the following methods:
• The getSubtotal method should return the subtotal of the sale, which is the quantity multiplied by the price. This method must get the price from the RetailItem object that was passed as an argument to the constructor.
• The getTax method should return the amount of sales tax on the purchase. The sales tax rate is 6 percent of a retail sale.
• The getTotal method should return the total of the sale, which is the subtotal plus the sales tax.

Demonstrate the class in a program that asks the user for the quantity of items being purchased and then displays the sale's subtotal, amount of sales tax and total.


And here is my RetailItem Class I wrote....
import java.io.*;
import java.util.Scanner; //Needed for Scanner Class


public class RetailItem {

private String description; // Name of item
private int units; // Amount of units
private double price; // Price of each unit
public RetailItem()
{

}
// Counstructor with arguements
public RetailItem(String des, int u, double p)
{
description = des;
units = u;
price = p;
}
/**
*This setDescription Method sets the item description
*@param des The String stored in the description field.
*/

public void setDescription (String des)
{
description=des;

}
/**
*This setPrice Method sets the price of the item.
*@param p The value stored in the price field.
*/
public void setPrice (double p)
{
price=p;
}
/**
*This setUnits Method is the number of units of a
*specific item.
*@param u The value stored in the units field.
*/
void setUnits(int u)
{
units = u;
}
/**
*The getUnits method returns the number of units.
*@return The Value in the Units field.
*/
public int getUnits()
{
return units;
}
/**
*The getDescription method returns the description of
*the item.
*@return The despription in the description field.
*/
public String getDescription()
{
return description;
}
/**
*The getPrice method returns the items price.
*@return The value in the price field.
*/
public double getPrice()
{
return price;
}

}
/**
*This program demostrates the RetailItem Class
*/
class RetailTest
{
public static void main (String [] args)
{
String str ="Shirt";
//Creates new RetailItem objects.
RetailItem r1=new RetailItem ("Jacket", 12, 59.95);
RetailItem r2=new RetailItem ("Designer Jeans", 40, 34.95);
RetailItem r3 =new RetailItem ();

//function call to set values
r3.setDescription(str);
r3.setUnits(20);
r3.setPrice(24.95);

//Output of data
System.out.println("\tDescription\t\tUnits on Hand\t\tPrice");
System.out.println("Item#1\t"+r1.getDescription()+ " \t\t\t "+r1.getUnits()
+ " \t\t\t " + r1.getPrice());
System.out.println("Item#2\t"+r2.getDescription()+ " \t "+r2.getUnits()
+ "\t\t\t\t" + r2.getPrice());
System.out.println("Item#3\t"+r3.getDescription()+ " \t\t\t "+r3.getUnits() +
" \t\t\t " + r3.getPrice());

//Exit program
System.exit(0);
}

Reference no: EM13161795

Questions Cloud

Design your application according to the considerations : Design your application according to the considerations described above.  For example, you must use functions that have the specified signatures, and arrays that have the specified declarations. They are
Write a program that asks a user for a file name and prints : Write a program that asks a user for a file name and prints the number of characters, words, and lines in that file.
The rpn calculator program : The RPN calculator program should read the RPN expression as an entire line from stdin.Input will consist of a single line. After completing the evaluation of the expression, the program should print the contents of the entire stack, starting with th..
Function which correctly sorts three : Write an x8086 HLA Assembly language program that implements a function which correctly sorts three parameters and returns a boolean value in AL which should be set to true if any swaps were performed to sort the sequence in increasing order.
Cashregister class that can be used with the retailitem clas : Write a CashRegister class that can be used with the RetailItem class that you wrote in Part 1. The CashRegister class should simulate the sale of a retail item. It should have a constructor that accepts a RetailItem object as an argument.
Shows the users name and program name : Java program, the program has a page that shows the users name and program name. a second jpanel that shows 4 buttons (circle square rectangle and oval) the problem i am having is that my program is not dropping where i click and the shapes are not s..
The program should not accept quantities : Input Validation: The program should not accept quantities, or wholesale or retail costs, less than 0. The program should not accept dates that the programmer deter- mines are unreasonable.
Perform an insertion sort on the file pointed : Using only the local data already supplied in FileSort, perform an insertion sort on the file pointed to by fd. Use lseeks for this; do not try to create any sort of array or list. An array-based version of insertion is supplied for your reference.
Using matlab and for loops : Using MATLAB and for loops, provide an animation that follows the below steps: Start with a square at the origin with each side being 5 units long. Imagine someone kicked the box and animate it moving on a projectile motion trajectory. Hint: look at ..

Reviews

Write a Review

C/C++ Programming Questions & Answers

  Write a complete c++ program

The main program will read in a parameter value n (read this in main). Then it will call a function read2arrays (details below) to read lists of grades into two arrays, which the main program will call test1 and test2 (or some other names of your ..

  Write a menu-driven program that maintains an address book

Write a menu-driven program that maintains an address book using a linked list. The address book must supports the following operations

  Input parameters, and returns nothing

Write a function called ten2one(), that takes no input parameters, and returns nothing (void). The body of the function must include a loop that counts from 10 down to 1, printing the count value each time in the loop. The output should look like (no..

  Write a program the contains an array of 1000 elements name

Write a function named equals() that accepts two char arrays and return true if both arrays have the same characters in the same order. The function should return false otherwise. Write a simple main() function to test your function.

  Use structures to create c program to compute student record

Explain the following and give their suitable syntax. A pointer. Use structures to create C program to compute and store student records of class.

  Write and test c program which outputs waveform

Write and test a C program which outputs waveform which switches from 10.0 kHz with a 50% duty cycle to 25.0 kHz with a 5% duty cycle every 5 seconds.

  Develop a basic temperature class

You have to develop a basic temperature class

  Program to declare array alpha of components of type int

Write C++ statements to do the following: Declare an array alpha of 15 components of the type int. Output the value of the tenth component of the array alpha.

  Prepare a program that uses the pthread library

Prepare a C/C++ program that uses the PTHREAD library to create threads and mutexes to synchronize them.

  Create program that uses functions and reference parameters

Create program that uses functions and reference parameters, and asks user for the outside temperature.

  Write c++ programs

Write a C++ program to accept distance in kilometers, coverts it to meters and then displays the result. Write a C++ program to find area and circumference of a circle.

  Develop a two dimensional interactive game

The player starts as a disk, but can "morph" (that is expand and contract) in selected directions

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