[SOLVED] SOLUTION: program that considers a class that keeps track of the sales of an item

20.00 $

Programming resource
Digital learning resource
Category:
Practical programming resource
Suitable for guided study and reference
Tutor guidance available when needed

Description

5/5 - (4 votes)

Write a program that considers a class that keeps track of the sales of an item. An object of this class will have the following attributes:
Number sold
Total sales
Total discounts
Cost per item
Bulk quantity
Bulk discount percentage
And, the following methods:
registerSale(n) records the sale of n items. If n is larger than the bulk quantity, the cost per item will be reduced by the bulk discount.
displaySales displays the number sold, the total sales, and total discount
Design and implement the class in Java™.
Use the appropriate public or private modifiers for the methods and attributes.

 

Resource details

Understand the Task Before You Use the Resource

Review the requirements, identify the programming concepts involved, study the implementation and test your understanding with your own examples and modifications.