subject

IMPORTANT NOTE: ThESE RULES WILL BE ENFORCED
File name matches Class name which starts with uppercase character.
It compiles with one of the Oracle Java compilers (javac. exe) using JDK5,6,7,or 8.
Import only java. and javax. classes, or other classes specifically covered in our text
Never submit specialized IDE specific code (e. g. from NetBeans) as I might run from command line.
Never submit those //TODO lines that your IDE (e. g. Eclipse) generates and you failed "to do."
Your name, course, date, and reasons for doing this appear in first few lines (/* comments */)
More lines of comments, using // style, so every screen has a few comments at all times.
Proper indent of code as described in textbook, for Class, methods, loops, decisions, etc...
Classes start with upper case, and object lower case, using reasonably descriptive names.
Good Boolean ZEN, and never let me see while(true) or if(true) as you can do better.
Your completed DiscountBill. java passes all Practice-IT tests and demonstrates:
using super in two constructors
using super. with at least two methods
Suppose a class GroceryBill keeps track of a list of items being purchased at a market:
Method/Constructor Description
public GroceryBill(Employee clerk) constructs a GroceryBill object for the given clerk
public void add(Item i) adds i to this bill's total
public double getTotal() returns the cost of these items
public void printReceipt() prints a list of items
GroceryBill objects interact with Item objects. An Item has the following public methods:
Method/Constructor Description
public double getPrice() returns the price for this item
public double getDiscount() returns the discount for this item
For example, a candy bar item might cost 1.35 with a discount of 0.25 for preferred customers, meaning that preferred customers get it for 1.10. (Some items will have no discount, 0.0.) Currently the above classes do not consider discounts. Every item in a bill is charged full price, and item discounts are ignored.
Define a class DiscountBill that extends GroceryBill to compute discounts for preferred customers. The constructor for DiscountBill accepts a parameter for whether the customer should get the discount.
Your class should adjust the amount reported by getTotal for preferred customers. For example, if the total would have been $80 but a preferred customer is getting $20 in discounts, then getTotal should report the total as $60 for that customer. You should also keep track of how many items a customer is getting a non-zero discount for and the overall discount, both as a total amount and as a percentage of the original bill. Include the extra methods below that allow a client to ask about the discount:
Method/Constructor Description
public DiscountBill(Employee clerk, boolean preferred) constructs discount bill for given clerk
public int getDiscountCount() returns the number of items that were discounted, if any
public double getDiscountAmount() returns the total discount for this list of items, if any
public double getDiscountPercent() returns the percent of the total discount as a percent of what the total would have been otherwise
If the customer is not a preferred customer the DiscountBill behaves at all times as if there is a total discount of 0.0 and no items have been discounted.

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 22:00
Which one of the following would administrators use to connect to a remote server securely for administration? a. telnetb. secure file transfer protocol (sftp)c. secure copy (scp)d. secure shell (ssh)
Answers: 1
question
Computers and Technology, 22.06.2019 22:20
Avariable of the data type arrays is storing 10 quantities. what is true about these quantities? a. the quantities all have different characteristics. b. the quantities all have the same characteristics. c. five quantities have the same and five have different characteristics. d. it is necessary for all quantities to be integers. e. it is necessary for all quantities to be characters.
Answers: 2
question
Computers and Technology, 23.06.2019 20:00
What software programs are used to to create professional publication? a.) graphics programs b.) word processors c.) page layout programs d.) spreadsheet programs
Answers: 2
question
Computers and Technology, 24.06.2019 04:30
Fall protection, confined space entry procedures, controlled noise levels, and protection from chemical hazards are some of the things that contribute to a safe and
Answers: 1
You know the right answer?
IMPORTANT NOTE: ThESE RULES WILL BE ENFORCED
File name matches Class name which starts with u...
Questions
question
Mathematics, 25.01.2022 02:40
question
Mathematics, 25.01.2022 02:40
question
Mathematics, 25.01.2022 02:40
question
Mathematics, 25.01.2022 02:40
Questions on the website: 13722363