You have been hired to produce an ordering system for a pizza restaurant and will add more code over the span of the next three weeks. For this first week, you will be writing the program
to read in files and build receipts using a provided Pizza class.
Here is an example of the receipt you will be able to print to the terminal:
--------------------
PIZZA 17.44
PEPPERONI
HAM
SAUSAGE
BACON
HAMBURGER
--------------------
PIZZA 17.44
MUSHROOOMS
ONIONS
BELL PEPPERS
OLIVES
TOMATOES
--------------------
PIZZA 14.46
CHICKEN
BACON
RED ONIONS
--------------------
TOTAL: 49.34
--------------------
Take a look at the javadoc and take note of the methods you need to create/implement. See what code has been provided and what still needs to be done. Brainstorm some ideas on how to implement these methods, and write your thoughts down.
Follow the javadoc and write some code. Make sure to write tests for your code as you work on each method.
To turn in your assignment, click through the link on Canvas, upload your files to Zybooks and click submit for grading. Note you can do this more than once.